Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
1,000,000,000,000 TEMPLE
Holders
139
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
2,369,419,317.096235150546581101 TEMPLEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
TempleTech
Compiler Version
v0.8.25+commit.b61c2a91
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-12-04 */ /* Website: https://000110100011.tech TG: https://t.me/temple_tech X: https://x.com/00011010011tech */ pragma solidity >=0.5.0; interface Temple { /** * @dev Called by the REBASE contract when tokens are received from source chain. * @param _srcChainId The chain id of the source chain. * @param _srcAddress The address of the REBASE token contract on the source chain. * @param _nonce The nonce of the transaction on the source chain. * @param _from The address of the account who calls the sendAndCall() on the source chain. * @param _amount The amount of tokens to transfer. * @param _payload Additional data with no specified format. */ function onREBASEReceived(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes32 _from, uint _amount, bytes calldata _payload) external; } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: contracts/Temple/token/REBASE/v2/interfaces/ICommonREBASE.sol pragma solidity >=0.5.0; /** * @dev Interface of the IREBASE core standard */ interface ICommonREBASE is IERC165 { struct LzCallParams { address payable refundAddress; address zroPaymentAddress; bytes adapterParams; } /** * @dev estimate send token `_tokenId` to (`_dstChainId`, `_toAddress`) * _dstChainId - L0 defined chain id to send tokens too * _toAddress - dynamic bytes array which contains the address to whom you are sending tokens to on the dstChain * _amount - amount of the tokens to transfer * _useZro - indicates to use zro to pay L0 fees * _adapterParam - flexible bytes array to indicate messaging adapter services in L0 */ function estimateSendFee(uint16 _dstChainId, bytes32 _toAddress, uint _amount, bool _useZro, bytes calldata _adapterParams) external view returns (uint nativeFee, uint zroFee); function estimateSendAndCallFee(uint16 _dstChainId, bytes32 _toAddress, uint _amount, bytes calldata _payload, uint64 _dstGasForCall, bool _useZro, bytes calldata _adapterParams) external view returns (uint nativeFee, uint zroFee); /** * @dev returns the circulating amount of tokens on current chain */ function circulatingSupply() external view returns (uint); /** * @dev returns the address of the ERC20 token */ function token() external view returns (address); } // File: contracts/Temple/token/REBASE/v2/interfaces/IRebase.sol pragma solidity >=0.5.0; /** * @dev Interface of the IREBASE core standard */ interface IRebase is ICommonREBASE { /** * @dev send `_amount` amount of token to (`_dstChainId`, `_toAddress`) from `_from` * `_from` the owner of token * `_dstChainId` the destination chain identifier * `_toAddress` can be any size depending on the `dstChainId`. * `_amount` the quantity of tokens in wei * `_refundAddress` the address Temple refunds if too much message fee is sent * `_zroPaymentAddress` set to address(0x0) if not paying in ZRO (Temple Token) * `_adapterParams` is a flexible bytes array to indicate messaging adapter services */ function sendFrom(address _from, uint16 _dstChainId, bytes32 _toAddress, uint _amount, LzCallParams calldata _callParams) external payable; function sendAndCall(address _from, uint16 _dstChainId, bytes32 _toAddress, uint _amount, bytes calldata _payload, uint64 _dstGasForCall, LzCallParams calldata _callParams) external payable; } // File: contracts/Temple/libraries/ExcessivelySafeCall.sol pragma solidity >=0.7.6; library ExcessivelySafeCall { uint constant LOW_28_MASK = 0x00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff; /// @notice Use when you _really_ really _really_ don't trust the called /// contract. This prevents the called contract from causing reversion of /// the caller in as many ways as we can. /// @dev The main difference between this and a solidity low-level call is /// that we limit the number of bytes that the callee can cause to be /// copied to caller memory. This prevents stupid things like malicious /// contracts returning 10,000,000 bytes causing a local OOG when copying /// to memory. /// @param _target The address to call /// @param _gas The amount of gas to forward to the remote contract /// @param _maxCopy The maximum number of bytes of returndata to copy /// to memory. /// @param _calldata The data to send to the remote contract /// @return success and returndata, as `.call()`. Returndata is capped to /// `_maxCopy` bytes. function excessivelySafeCall( address _target, uint _gas, uint16 _maxCopy, bytes memory _calldata ) internal returns (bool, bytes memory) { // set up for assembly call uint _toCopy; bool _success; bytes memory _returnData = new bytes(_maxCopy); // dispatch message to recipient // by assembly calling "handle" function // we call via assembly to avoid memcopying a very large returndata // returned by a malicious contract assembly { _success := call( _gas, // gas _target, // recipient 0, // ether value add(_calldata, 0x20), // inloc mload(_calldata), // inlen 0, // outloc 0 // outlen ) // limit our copy to 256 bytes _toCopy := returndatasize() if gt(_toCopy, _maxCopy) { _toCopy := _maxCopy } // Store the length of the copied bytes mstore(_returnData, _toCopy) // copy the bytes from returndata[0:_toCopy] returndatacopy(add(_returnData, 0x20), 0, _toCopy) } return (_success, _returnData); } /// @notice Use when you _really_ really _really_ don't trust the called /// contract. This prevents the called contract from causing reversion of /// the caller in as many ways as we can. /// @dev The main difference between this and a solidity low-level call is /// that we limit the number of bytes that the callee can cause to be /// copied to caller memory. This prevents stupid things like malicious /// contracts returning 10,000,000 bytes causing a local OOG when copying /// to memory. /// @param _target The address to call /// @param _gas The amount of gas to forward to the remote contract /// @param _maxCopy The maximum number of bytes of returndata to copy /// to memory. /// @param _calldata The data to send to the remote contract /// @return success and returndata, as `.call()`. Returndata is capped to /// `_maxCopy` bytes. function excessivelySafeStaticCall( address _target, uint _gas, uint16 _maxCopy, bytes memory _calldata ) internal view returns (bool, bytes memory) { // set up for assembly call uint _toCopy; bool _success; bytes memory _returnData = new bytes(_maxCopy); // dispatch message to recipient // by assembly calling "handle" function // we call via assembly to avoid memcopying a very large returndata // returned by a malicious contract assembly { _success := staticcall( _gas, // gas _target, // recipient add(_calldata, 0x20), // inloc mload(_calldata), // inlen 0, // outloc 0 // outlen ) // limit our copy to 256 bytes _toCopy := returndatasize() if gt(_toCopy, _maxCopy) { _toCopy := _maxCopy } // Store the length of the copied bytes mstore(_returnData, _toCopy) // copy the bytes from returndata[0:_toCopy] returndatacopy(add(_returnData, 0x20), 0, _toCopy) } return (_success, _returnData); } /** * @notice Swaps function selectors in encoded contract calls * @dev Allows reuse of encoded calldata for functions with identical * argument types but different names. It simply swaps out the first 4 bytes * for the new selector. This function modifies memory in place, and should * only be used with caution. * @param _newSelector The new 4-byte selector * @param _buf The encoded contract args */ function swapSelector(bytes4 _newSelector, bytes memory _buf) internal pure { require(_buf.length >= 4); uint _mask = LOW_28_MASK; assembly { // load the first word of let _word := mload(add(_buf, 0x20)) // mask out the top 4 bytes // /x _word := and(_word, _mask) _word := or(_newSelector, _word) mstore(add(_buf, 0x20), _word) } } } // File: contracts/Temple/libraries/BytesLib.sol /* * @title Solidity Bytes Arrays Utils * @author Gonçalo Sá <[email protected]> * * @dev Bytes tightly packed arrays utility library for ethereum contracts written in Solidity. * The library lets you concatenate, slice and type cast bytes arrays both in memory and storage. */ pragma solidity >=0.8.0 <0.9.0; library BytesLib { function concat(bytes memory _preBytes, bytes memory _postBytes) internal pure returns (bytes memory) { bytes memory tempBytes; assembly { // Get a location of some free memory and store it in tempBytes as // Solidity does for memory variables. tempBytes := mload(0x40) // Store the length of the first bytes array at the beginning of // the memory for tempBytes. let length := mload(_preBytes) mstore(tempBytes, length) // Maintain a memory counter for the current write location in the // temp bytes array by adding the 32 bytes for the array length to // the starting location. let mc := add(tempBytes, 0x20) // Stop copying when the memory counter reaches the length of the // first bytes array. let end := add(mc, length) for { // Initialize a copy counter to the start of the _preBytes data, // 32 bytes into its memory. let cc := add(_preBytes, 0x20) } lt(mc, end) { // Increase both counters by 32 bytes each iteration. mc := add(mc, 0x20) cc := add(cc, 0x20) } { // Write the _preBytes data into the tempBytes memory 32 bytes // at a time. mstore(mc, mload(cc)) } // Add the length of _postBytes to the current length of tempBytes // and store it as the new length in the first 32 bytes of the // tempBytes memory. length := mload(_postBytes) mstore(tempBytes, add(length, mload(tempBytes))) // Move the memory counter back from a multiple of 0x20 to the // actual end of the _preBytes data. mc := end // Stop copying when the memory counter reaches the new combined // length of the arrays. end := add(mc, length) for { let cc := add(_postBytes, 0x20) } lt(mc, end) { mc := add(mc, 0x20) cc := add(cc, 0x20) } { mstore(mc, mload(cc)) } // Update the free-memory pointer by padding our last write location // to 32 bytes: add 31 bytes to the end of tempBytes to move to the // next 32 byte block, then round down to the nearest multiple of // 32. If the sum of the length of the two arrays is zero then add // one before rounding down to leave a blank 32 bytes (the length block with 0). mstore( 0x40, and( add(add(end, iszero(add(length, mload(_preBytes)))), 31), not(31) // Round down to the nearest 32 bytes. ) ) } return tempBytes; } function concatStorage(bytes storage _preBytes, bytes memory _postBytes) internal { assembly { // Read the first 32 bytes of _preBytes storage, which is the length // of the array. (We don't need to use the offset into the slot // because arrays use the entire slot.) let fslot := sload(_preBytes.slot) // Arrays of 31 bytes or less have an even value in their slot, // while longer arrays have an odd value. The actual length is // the slot divided by two for odd values, and the lowest order // byte divided by two for even values. // If the slot is even, bitwise and the slot with 255 and divide by // two to get the length. If the slot is odd, bitwise and the slot // with -1 and divide by two. let slength := div(and(fslot, sub(mul(0x100, iszero(and(fslot, 1))), 1)), 2) let mlength := mload(_postBytes) let newlength := add(slength, mlength) // slength can contain both the length and contents of the array // if length < 32 bytes so let's prepare for that // v. http://solidity.readthedocs.io/en/latest/miscellaneous.html#layout-of-state-variables-in-storage switch add(lt(slength, 32), lt(newlength, 32)) case 2 { // Since the new array still fits in the slot, we just need to // update the contents of the slot. // uint256(bytes_storage) = uint256(bytes_storage) + uint256(bytes_memory) + new_length sstore( _preBytes.slot, // all the modifications to the slot are inside this // next block add( // we can just add to the slot contents because the // bytes we want to change are the LSBs fslot, add( mul( div( // load the bytes from memory mload(add(_postBytes, 0x20)), // zero all bytes to the right exp(0x100, sub(32, mlength)) ), // and now shift left the number of bytes to // leave space for the length in the slot exp(0x100, sub(32, newlength)) ), // increase length by the double of the memory // bytes length mul(mlength, 2) ) ) ) } case 1 { // The stored value fits in the slot, but the combined value // will exceed it. // get the keccak hash to get the contents of the array mstore(0x0, _preBytes.slot) let sc := add(keccak256(0x0, 0x20), div(slength, 32)) // save new length sstore(_preBytes.slot, add(mul(newlength, 2), 1)) // The contents of the _postBytes array start 32 bytes into // the structure. Our first read should obtain the `submod` // bytes that can fit into the unused space in the last word // of the stored array. To get this, we read 32 bytes starting // from `submod`, so the data we read overlaps with the array // contents by `submod` bytes. Masking the lowest-order // `submod` bytes allows us to add that value directly to the // stored value. let submod := sub(32, slength) let mc := add(_postBytes, submod) let end := add(_postBytes, mlength) let mask := sub(exp(0x100, submod), 1) sstore(sc, add(and(fslot, 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00), and(mload(mc), mask))) for { mc := add(mc, 0x20) sc := add(sc, 1) } lt(mc, end) { sc := add(sc, 1) mc := add(mc, 0x20) } { sstore(sc, mload(mc)) } mask := exp(0x100, sub(mc, end)) sstore(sc, mul(div(mload(mc), mask), mask)) } default { // get the keccak hash to get the contents of the array mstore(0x0, _preBytes.slot) // Start copying to the last used word of the stored array. let sc := add(keccak256(0x0, 0x20), div(slength, 32)) // save new length sstore(_preBytes.slot, add(mul(newlength, 2), 1)) // Copy over the first `submod` bytes of the new data as in // case 1 above. let slengthmod := mod(slength, 32) let mlengthmod := mod(mlength, 32) let submod := sub(32, slengthmod) let mc := add(_postBytes, submod) let end := add(_postBytes, mlength) let mask := sub(exp(0x100, submod), 1) sstore(sc, add(sload(sc), and(mload(mc), mask))) for { sc := add(sc, 1) mc := add(mc, 0x20) } lt(mc, end) { sc := add(sc, 1) mc := add(mc, 0x20) } { sstore(sc, mload(mc)) } mask := exp(0x100, sub(mc, end)) sstore(sc, mul(div(mload(mc), mask), mask)) } } } function slice( bytes memory _bytes, uint _start, uint _length ) internal pure returns (bytes memory) { require(_length + 31 >= _length, "slice_overflow"); require(_bytes.length >= _start + _length, "slice_outOfBounds"); bytes memory tempBytes; assembly { switch iszero(_length) case 0 { // Get a location of some free memory and store it in tempBytes as // Solidity does for memory variables. tempBytes := mload(0x40) // The first word of the slice result is potentially a partial // word read from the original array. To read it, we calculate // the length of that partial word and start copying that many // bytes into the array. The first word we copy will start with // data we don't care about, but the last `lengthmod` bytes will // land at the beginning of the contents of the new array. When // we're done copying, we overwrite the full first word with // the actual length of the slice. let lengthmod := and(_length, 31) // The multiplication in the next line is necessary // because when slicing multiples of 32 bytes (lengthmod == 0) // the following copy loop was copying the origin's length // and then ending prematurely not copying everything it should. let mc := add(add(tempBytes, lengthmod), mul(0x20, iszero(lengthmod))) let end := add(mc, _length) for { // The multiplication in the next line has the same exact purpose // as the one above. let cc := add(add(add(_bytes, lengthmod), mul(0x20, iszero(lengthmod))), _start) } lt(mc, end) { mc := add(mc, 0x20) cc := add(cc, 0x20) } { mstore(mc, mload(cc)) } mstore(tempBytes, _length) //update free-memory pointer //allocating the array padded to 32 bytes like the compiler does now mstore(0x40, and(add(mc, 31), not(31))) } //if we want a zero-length slice let's just return a zero-length array default { tempBytes := mload(0x40) //zero out the 32 bytes slice we are about to return //we need to do it because Solidity does not garbage collect mstore(tempBytes, 0) mstore(0x40, add(tempBytes, 0x20)) } } return tempBytes; } function toAddress(bytes memory _bytes, uint _start) internal pure returns (address) { require(_bytes.length >= _start + 20, "toAddress_outOfBounds"); address tempAddress; assembly { tempAddress := div(mload(add(add(_bytes, 0x20), _start)), 0x1000000000000000000000000) } return tempAddress; } function toUint8(bytes memory _bytes, uint _start) internal pure returns (uint8) { require(_bytes.length >= _start + 1, "toUint8_outOfBounds"); uint8 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x1), _start)) } return tempUint; } function toUint16(bytes memory _bytes, uint _start) internal pure returns (uint16) { require(_bytes.length >= _start + 2, "toUint16_outOfBounds"); uint16 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x2), _start)) } return tempUint; } function toUint32(bytes memory _bytes, uint _start) internal pure returns (uint32) { require(_bytes.length >= _start + 4, "toUint32_outOfBounds"); uint32 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x4), _start)) } return tempUint; } function toUint64(bytes memory _bytes, uint _start) internal pure returns (uint64) { require(_bytes.length >= _start + 8, "toUint64_outOfBounds"); uint64 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x8), _start)) } return tempUint; } function toUint96(bytes memory _bytes, uint _start) internal pure returns (uint96) { require(_bytes.length >= _start + 12, "toUint96_outOfBounds"); uint96 tempUint; assembly { tempUint := mload(add(add(_bytes, 0xc), _start)) } return tempUint; } function toUint128(bytes memory _bytes, uint _start) internal pure returns (uint128) { require(_bytes.length >= _start + 16, "toUint128_outOfBounds"); uint128 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x10), _start)) } return tempUint; } function toUint256(bytes memory _bytes, uint _start) internal pure returns (uint) { require(_bytes.length >= _start + 32, "toUint256_outOfBounds"); uint tempUint; assembly { tempUint := mload(add(add(_bytes, 0x20), _start)) } return tempUint; } function toBytes32(bytes memory _bytes, uint _start) internal pure returns (bytes32) { require(_bytes.length >= _start + 32, "toBytes32_outOfBounds"); bytes32 tempBytes32; assembly { tempBytes32 := mload(add(add(_bytes, 0x20), _start)) } return tempBytes32; } function equal(bytes memory _preBytes, bytes memory _postBytes) internal pure returns (bool) { bool success = true; assembly { let length := mload(_preBytes) // if lengths don't match the arrays are not equal switch eq(length, mload(_postBytes)) case 1 { // cb is a circuit breaker in the for loop since there's // no said feature for inline assembly loops // cb = 1 - don't breaker // cb = 0 - break let cb := 1 let mc := add(_preBytes, 0x20) let end := add(mc, length) for { let cc := add(_postBytes, 0x20) // the next line is the loop condition: // while(uint256(mc < end) + cb == 2) } eq(add(lt(mc, end), cb), 2) { mc := add(mc, 0x20) cc := add(cc, 0x20) } { // if any of these checks fails then arrays are not equal if iszero(eq(mload(mc), mload(cc))) { // unsuccess: success := 0 cb := 0 } } } default { // unsuccess: success := 0 } } return success; } function equalStorage(bytes storage _preBytes, bytes memory _postBytes) internal view returns (bool) { bool success = true; assembly { // we know _preBytes_offset is 0 let fslot := sload(_preBytes.slot) // Decode the length of the stored array like in concatStorage(). let slength := div(and(fslot, sub(mul(0x100, iszero(and(fslot, 1))), 1)), 2) let mlength := mload(_postBytes) // if lengths don't match the arrays are not equal switch eq(slength, mlength) case 1 { // slength can contain both the length and contents of the array // if length < 32 bytes so let's prepare for that // v. http://solidity.readthedocs.io/en/latest/miscellaneous.html#layout-of-state-variables-in-storage if iszero(iszero(slength)) { switch lt(slength, 32) case 1 { // blank the last byte which is the length fslot := mul(div(fslot, 0x100), 0x100) if iszero(eq(fslot, mload(add(_postBytes, 0x20)))) { // unsuccess: success := 0 } } default { // cb is a circuit breaker in the for loop since there's // no said feature for inline assembly loops // cb = 1 - don't breaker // cb = 0 - break let cb := 1 // get the keccak hash to get the contents of the array mstore(0x0, _preBytes.slot) let sc := keccak256(0x0, 0x20) let mc := add(_postBytes, 0x20) let end := add(mc, mlength) // the next line is the loop condition: // while(uint256(mc < end) + cb == 2) for { } eq(add(lt(mc, end), cb), 2) { sc := add(sc, 1) mc := add(mc, 0x20) } { if iszero(eq(sload(sc), mload(mc))) { // unsuccess: success := 0 cb := 0 } } } } } default { // unsuccess: success := 0 } } return success; } } // File: contracts/Temple/TempleeApp/interfaces/ITempleUserApplicationConfig.sol pragma solidity >=0.5.0; interface ITempleUserApplicationConfig { // @notice set the configuration of the Temple messaging library of the specified version // @param _version - messaging library version // @param _chainId - the chainId for the pending config change // @param _configType - type of configuration. every messaging library has its own convention. // @param _config - configuration in the bytes. can encode arbitrary content. function setConfig( uint16 _version, uint16 _chainId, uint _configType, bytes calldata _config ) external; // @notice set the send() Temple messaging library version to _version // @param _version - new messaging library version function setSendVersion(uint16 _version) external; // @notice set the TempleeReceive() Temple messaging library version to _version // @param _version - new messaging library version function setReceiveVersion(uint16 _version) external; // @notice Only when the UA needs to resume the message flow in blocking mode and clear the stored payload // @param _srcChainId - the chainId of the source chain // @param _srcAddress - the contract address of the source contract at the source chain function forceResumeReceive(uint16 _srcChainId, bytes calldata _srcAddress) external; } // File: contracts/Temple/TempleeApp/interfaces/ITempleEndpoint.sol pragma solidity >=0.5.0; interface ITempleEndpoint is ITempleUserApplicationConfig { // @notice send a Temple message to the specified address at a Temple endpoint. // @param _dstChainId - the destination chain identifier // @param _destination - the address on destination chain (in bytes). address length/format may vary by chains // @param _payload - a custom bytes payload to send to the destination contract // @param _refundAddress - if the source transaction is cheaper than the amount of value passed, refund the additional amount to this address // @param _zroPaymentAddress - the address of the ZRO token holder who would pay for the transaction // @param _adapterParams - parameters for custom functionality. e.g. receive airdropped native gas from the relayer on destination function send( uint16 _dstChainId, bytes calldata _destination, bytes calldata _payload, address payable _refundAddress, address _zroPaymentAddress, bytes calldata _adapterParams ) external payable; // @notice used by the messaging library to publish verified payload // @param _srcChainId - the source chain identifier // @param _srcAddress - the source contract (as bytes) at the source chain // @param _dstAddress - the address on destination chain // @param _nonce - the unbound message ordering nonce // @param _gasLimit - the gas limit for external contract execution // @param _payload - verified payload to send to the destination contract function receivePayload( uint16 _srcChainId, bytes calldata _srcAddress, address _dstAddress, uint64 _nonce, uint _gasLimit, bytes calldata _payload ) external; // @notice get the inboundNonce of a TempleeApp from a source chain which could be EVM or non-EVM chain // @param _srcChainId - the source chain identifier // @param _srcAddress - the source chain contract address function getInboundNonce(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (uint64); // @notice get the outboundNonce from this source chain which, consequently, is always an EVM // @param _srcAddress - the source chain contract address function getOutboundNonce(uint16 _dstChainId, address _srcAddress) external view returns (uint64); // @notice gets a quote in source native gas, for the amount that send() requires to pay for message delivery // @param _dstChainId - the destination chain identifier // @param _userApplication - the user app address on this EVM chain // @param _payload - the custom message to send over Temple // @param _payInZRO - if false, user app pays the protocol fee in native token // @param _adapterParam - parameters for the adapter service, e.g. send some dust native token to dstChain function estimateFees( uint16 _dstChainId, address _userApplication, bytes calldata _payload, bool _payInZRO, bytes calldata _adapterParam ) external view returns (uint nativeFee, uint zroFee); // @notice get this Endpoint's immutable source identifier function getChainId() external view returns (uint16); // @notice the interface to retry failed message on this Endpoint destination // @param _srcChainId - the source chain identifier // @param _srcAddress - the source chain contract address // @param _payload - the payload to be retried function retryPayload( uint16 _srcChainId, bytes calldata _srcAddress, bytes calldata _payload ) external; // @notice query if any STORED payload (message blocking) at the endpoint. // @param _srcChainId - the source chain identifier // @param _srcAddress - the source chain contract address function hasStoredPayload(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (bool); // @notice query if the _libraryAddress is valid for sending msgs. // @param _userApplication - the user app address on this EVM chain function getSendLibraryAddress(address _userApplication) external view returns (address); // @notice query if the _libraryAddress is valid for receiving msgs. // @param _userApplication - the user app address on this EVM chain function getReceiveLibraryAddress(address _userApplication) external view returns (address); // @notice query if the non-reentrancy guard for send() is on // @return true if the guard is on. false otherwise function isSendingPayload() external view returns (bool); // @notice query if the non-reentrancy guard for receive() is on // @return true if the guard is on. false otherwise function isReceivingPayload() external view returns (bool); // @notice get the configuration of the Temple messaging library of the specified version // @param _version - messaging library version // @param _chainId - the chainId for the pending config change // @param _userApplication - the contract address of the user application // @param _configType - type of configuration. every messaging library has its own convention. function getConfig( uint16 _version, uint16 _chainId, address _userApplication, uint _configType ) external view returns (bytes memory); // @notice get the send() Temple messaging library version // @param _userApplication - the contract address of the user application function getSendVersion(address _userApplication) external view returns (uint16); // @notice get the TempleeReceive() Temple messaging library version // @param _userApplication - the contract address of the user application function getReceiveVersion(address _userApplication) external view returns (uint16); } // File: contracts/Temple/TempleeApp/interfaces/ITempleReceiver.sol pragma solidity >=0.5.0; interface ITempleReceiver { // @notice Temple endpoint will invoke this function to deliver the message on the destination // @param _srcChainId - the source endpoint identifier // @param _srcAddress - the source sending contract address from the source chain // @param _nonce - the ordered message nonce // @param _payload - the signed payload is the UA bytes has encoded to be sent function TempleeReceive( uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload ) external; } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: contracts/Temple/TempleeApp/TempleeApp.sol pragma solidity ^0.8.0; /* * a generic TempleeReceiver implementation */ abstract contract TempleeApp is Ownable, ITempleReceiver, ITempleUserApplicationConfig { using BytesLib for bytes; // ua can not send payload larger than this by default, but it can be changed by the ua owner uint public constant DEFAULT_PAYLOAD_SIZE_LIMIT = 10000; ITempleEndpoint public immutable lzEndpoint; mapping(uint16 => bytes) public trustedRemoteLookup; mapping(uint16 => mapping(uint16 => uint)) public minDstGasLookup; mapping(uint16 => uint) public payloadSizeLimitLookup; address public precrime; event SetPrecrime(address precrime); event SetTrustedRemote(uint16 _remoteChainId, bytes _path); event SetTrustedRemoteAddress(uint16 _remoteChainId, bytes _remoteAddress); event SetMinDstGas(uint16 _dstChainId, uint16 _type, uint _minDstGas); constructor(address _endpoint) { lzEndpoint = ITempleEndpoint(_endpoint); } function TempleeReceive( uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload ) public virtual override { // TempleeReceive must be called by the endpoint for security require(_msgSender() == address(lzEndpoint), "TempleeApp: invalid endpoint caller"); bytes memory trustedRemote = trustedRemoteLookup[_srcChainId]; // if will still block the message pathway from (srcChainId, srcAddress). should not receive message from untrusted remote. require( _srcAddress.length == trustedRemote.length && trustedRemote.length > 0 && keccak256(_srcAddress) == keccak256(trustedRemote), "TempleeApp: invalid source sending contract" ); _blockingTempleeReceive(_srcChainId, _srcAddress, _nonce, _payload); } // abstract function - the default behaviour of Temple is blocking. See: NonblockingTempleeApp if you dont need to enforce ordered messaging function _blockingTempleeReceive( uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload ) internal virtual; function _lzSend( uint16 _dstChainId, bytes memory _payload, address payable _refundAddress, address _zroPaymentAddress, bytes memory _adapterParams, uint _nativeFee ) internal virtual { bytes memory trustedRemote = trustedRemoteLookup[_dstChainId]; require(trustedRemote.length != 0, "TempleeApp: destination chain is not a trusted source"); _checkPayloadSize(_dstChainId, _payload.length); lzEndpoint.send{value: _nativeFee}(_dstChainId, trustedRemote, _payload, _refundAddress, _zroPaymentAddress, _adapterParams); } function _checkGasLimit( uint16 _dstChainId, uint16 _type, bytes memory _adapterParams, uint _extraGas ) internal view virtual { uint providedGasLimit = _getGasLimit(_adapterParams); uint minGasLimit = minDstGasLookup[_dstChainId][_type]; require(minGasLimit > 0, "TempleeApp: minGasLimit not set"); require(providedGasLimit >= minGasLimit + _extraGas, "TempleeApp: gas limit is too low"); } function _getGasLimit(bytes memory _adapterParams) internal pure virtual returns (uint gasLimit) { require(_adapterParams.length >= 34, "TempleeApp: invalid adapterParams"); assembly { gasLimit := mload(add(_adapterParams, 34)) } } function _checkPayloadSize(uint16 _dstChainId, uint _payloadSize) internal view virtual { uint payloadSizeLimit = payloadSizeLimitLookup[_dstChainId]; if (payloadSizeLimit == 0) { // use default if not set payloadSizeLimit = DEFAULT_PAYLOAD_SIZE_LIMIT; } require(_payloadSize <= payloadSizeLimit, "TempleeApp: payload size is too large"); } //---------------------------UserApplication config---------------------------------------- function getConfig( uint16 _version, uint16 _chainId, address, uint _configType ) external view returns (bytes memory) { return lzEndpoint.getConfig(_version, _chainId, address(this), _configType); } // generic config for Temple user Application function setConfig( uint16 _version, uint16 _chainId, uint _configType, bytes calldata _config ) external override onlyOwner { lzEndpoint.setConfig(_version, _chainId, _configType, _config); } function setSendVersion(uint16 _version) external override onlyOwner { lzEndpoint.setSendVersion(_version); } function setReceiveVersion(uint16 _version) external override onlyOwner { lzEndpoint.setReceiveVersion(_version); } function forceResumeReceive(uint16 _srcChainId, bytes calldata _srcAddress) external override onlyOwner { lzEndpoint.forceResumeReceive(_srcChainId, _srcAddress); } // _path = abi.encodePacked(remoteAddress, localAddress) // this function set the trusted path for the cross-chain communication function setTrustedRemote(uint16 _remoteChainId, bytes calldata _path) external onlyOwner { trustedRemoteLookup[_remoteChainId] = _path; emit SetTrustedRemote(_remoteChainId, _path); } function setTrustedRemoteAddress(uint16 _remoteChainId, bytes calldata _remoteAddress) external onlyOwner { trustedRemoteLookup[_remoteChainId] = abi.encodePacked(_remoteAddress, address(this)); emit SetTrustedRemoteAddress(_remoteChainId, _remoteAddress); } function getTrustedRemoteAddress(uint16 _remoteChainId) external view returns (bytes memory) { bytes memory path = trustedRemoteLookup[_remoteChainId]; require(path.length != 0, "TempleeApp: no trusted path record"); return path.slice(0, path.length - 20); // the last 20 bytes should be address(this) } function setPrecrime(address _precrime) external onlyOwner { precrime = _precrime; emit SetPrecrime(_precrime); } function setMinDstGas( uint16 _dstChainId, uint16 _packetType, uint _minGas ) external onlyOwner { minDstGasLookup[_dstChainId][_packetType] = _minGas; emit SetMinDstGas(_dstChainId, _packetType, _minGas); } // if the size is 0, it means default size limit function setPayloadSizeLimit(uint16 _dstChainId, uint _size) external onlyOwner { payloadSizeLimitLookup[_dstChainId] = _size; } //--------------------------- VIEW FUNCTION ---------------------------------------- function isTrustedRemote(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (bool) { bytes memory trustedSource = trustedRemoteLookup[_srcChainId]; return keccak256(trustedSource) == keccak256(_srcAddress); } } // File: contracts/Temple/TempleeApp/NonblockingTempleeApp.sol pragma solidity ^0.8.0; /* * the default Temple messaging behaviour is blocking, i.e. any failed message will block the channel * this abstract class try-catch all fail messages and store locally for future retry. hence, non-blocking * NOTE: if the srcAddress is not configured properly, it will still block the message pathway from (srcChainId, srcAddress) */ abstract contract NonblockingTempleeApp is TempleeApp { using ExcessivelySafeCall for address; constructor(address _endpoint) TempleeApp(_endpoint) {} mapping(uint16 => mapping(bytes => mapping(uint64 => bytes32))) public failedMessages; event MessageFailed(uint16 _srcChainId, bytes _srcAddress, uint64 _nonce, bytes _payload, bytes _reason); event RetryMessageSuccess(uint16 _srcChainId, bytes _srcAddress, uint64 _nonce, bytes32 _payloadHash); // overriding the virtual function in TempleeReceiver function _blockingTempleeReceive( uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload ) internal virtual override { (bool success, bytes memory reason) = address(this).excessivelySafeCall( gasleft(), 150, abi.encodeWithSelector(this.nonblockingTempleeReceive.selector, _srcChainId, _srcAddress, _nonce, _payload) ); if (!success) { _storeFailedMessage(_srcChainId, _srcAddress, _nonce, _payload, reason); } } function _storeFailedMessage( uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload, bytes memory _reason ) internal virtual { failedMessages[_srcChainId][_srcAddress][_nonce] = keccak256(_payload); emit MessageFailed(_srcChainId, _srcAddress, _nonce, _payload, _reason); } function nonblockingTempleeReceive( uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload ) public virtual { // only internal transaction require(_msgSender() == address(this), "NonblockingTempleeApp: caller must be TempleeApp"); _nonblockingTempleeReceive(_srcChainId, _srcAddress, _nonce, _payload); } //@notice override this function function _nonblockingTempleeReceive( uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload ) internal virtual; function retryMessage( uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload ) public payable virtual { // assert there is message to retry bytes32 payloadHash = failedMessages[_srcChainId][_srcAddress][_nonce]; require(payloadHash != bytes32(0), "NonblockingTempleeApp: no stored message"); require(keccak256(_payload) == payloadHash, "NonblockingTempleeApp: invalid payload"); // clear the stored message failedMessages[_srcChainId][_srcAddress][_nonce] = bytes32(0); // execute the message. revert if it fails again _nonblockingTempleeReceive(_srcChainId, _srcAddress, _nonce, _payload); emit RetryMessageSuccess(_srcChainId, _srcAddress, _nonce, payloadHash); } } // File: contracts/Temple/token/REBASE/v2/REBASECoreV2.sol pragma solidity ^0.8.0; abstract contract REBASECoreV2 is NonblockingTempleeApp { using BytesLib for bytes; using ExcessivelySafeCall for address; uint public constant NO_EXTRA_GAS = 0; // packet type uint8 public constant PT_SEND = 0; uint8 public constant PT_SEND_AND_CALL = 1; uint8 public immutable sharedDecimals; mapping(uint16 => mapping(bytes => mapping(uint64 => bool))) public creditedPackets; /** * @dev Emitted when `_amount` tokens are moved from the `_sender` to (`_dstChainId`, `_toAddress`) * `_nonce` is the outbound nonce */ event SendToChain(uint16 indexed _dstChainId, address indexed _from, bytes32 indexed _toAddress, uint _amount); /** * @dev Emitted when `_amount` tokens are received from `_srcChainId` into the `_toAddress` on the local chain. * `_nonce` is the inbound nonce. */ event ReceiveFromChain(uint16 indexed _srcChainId, address indexed _to, uint _amount); event CallREBASEReceivedSuccess(uint16 indexed _srcChainId, bytes _srcAddress, uint64 _nonce, bytes32 _hash); event NonContractAddress(address _address); // _sharedDecimals should be the minimum decimals on all chains constructor(uint8 _sharedDecimals, address _lzEndpoint) NonblockingTempleeApp(_lzEndpoint) { sharedDecimals = _sharedDecimals; } /************************************************************************ * public functions ************************************************************************/ function callOnREBASEReceived( uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes32 _from, address _to, uint _amount, bytes calldata _payload, uint _gasForCall ) public virtual { require(_msgSender() == address(this), "REBASECore: caller must be REBASECore"); // send _amount = _transferFrom(address(this), _to, _amount); emit ReceiveFromChain(_srcChainId, _to, _amount); // call Temple(_to).onREBASEReceived{gas: _gasForCall}(_srcChainId, _srcAddress, _nonce, _from, _amount, _payload); } /************************************************************************ * internal functions ************************************************************************/ function _estimateSendFee( uint16 _dstChainId, bytes32 _toAddress, uint _amount, bool _useZro, bytes memory _adapterParams ) internal view virtual returns (uint nativeFee, uint zroFee) { // mock the payload for sendFrom() bytes memory payload = _encodeSendPayload(_toAddress, _ld2sd(_amount)); return lzEndpoint.estimateFees(_dstChainId, address(this), payload, _useZro, _adapterParams); } function _estimateSendAndCallFee( uint16 _dstChainId, bytes32 _toAddress, uint _amount, bytes memory _payload, uint64 _dstGasForCall, bool _useZro, bytes memory _adapterParams ) internal view virtual returns (uint nativeFee, uint zroFee) { // mock the payload for sendAndCall() bytes memory payload = _encodeSendAndCallPayload(msg.sender, _toAddress, _ld2sd(_amount), _payload, _dstGasForCall); return lzEndpoint.estimateFees(_dstChainId, address(this), payload, _useZro, _adapterParams); } function _nonblockingTempleeReceive( uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload ) internal virtual override { uint8 packetType = _payload.toUint8(0); if (packetType == PT_SEND) { _sendAck(_srcChainId, _srcAddress, _nonce, _payload); } else if (packetType == PT_SEND_AND_CALL) { _sendAndCallAck(_srcChainId, _srcAddress, _nonce, _payload); } else { revert("REBASECore: unknown packet type"); } } function _send( address _from, uint16 _dstChainId, bytes32 _toAddress, uint _amount, address payable _refundAddress, address _zroPaymentAddress, bytes memory _adapterParams ) internal virtual returns (uint amount) { _checkGasLimit(_dstChainId, PT_SEND, _adapterParams, NO_EXTRA_GAS); (amount, ) = _removeDust(_amount); amount = _debitFrom(_from, _dstChainId, _toAddress, amount); // amount returned should not have dust require(amount > 0, "REBASECore: amount too small"); bytes memory lzPayload = _encodeSendPayload(_toAddress, _ld2sd(amount)); _lzSend(_dstChainId, lzPayload, _refundAddress, _zroPaymentAddress, _adapterParams, msg.value); emit SendToChain(_dstChainId, _from, _toAddress, amount); } function _sendAck( uint16 _srcChainId, bytes memory, uint64, bytes memory _payload ) internal virtual { (address to, uint64 amountSD) = _decodeSendPayload(_payload); if (to == address(0)) { to = address(0xdead); } uint amount = _sd2ld(amountSD); amount = _creditTo(_srcChainId, to, amount); emit ReceiveFromChain(_srcChainId, to, amount); } function _sendAndCall( address _from, uint16 _dstChainId, bytes32 _toAddress, uint _amount, bytes memory _payload, uint64 _dstGasForCall, address payable _refundAddress, address _zroPaymentAddress, bytes memory _adapterParams ) internal virtual returns (uint amount) { _checkGasLimit(_dstChainId, PT_SEND_AND_CALL, _adapterParams, _dstGasForCall); (amount, ) = _removeDust(_amount); amount = _debitFrom(_from, _dstChainId, _toAddress, amount); require(amount > 0, "REBASECore: amount too small"); // encode the msg.sender into the payload instead of _from bytes memory lzPayload = _encodeSendAndCallPayload(msg.sender, _toAddress, _ld2sd(amount), _payload, _dstGasForCall); _lzSend(_dstChainId, lzPayload, _refundAddress, _zroPaymentAddress, _adapterParams, msg.value); emit SendToChain(_dstChainId, _from, _toAddress, amount); } function _sendAndCallAck( uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload ) internal virtual { (bytes32 from, address to, uint64 amountSD, bytes memory payloadForCall, uint64 gasForCall) = _decodeSendAndCallPayload(_payload); bool credited = creditedPackets[_srcChainId][_srcAddress][_nonce]; uint amount = _sd2ld(amountSD); // credit to this contract first, and then transfer to receiver only if callOnREBASEReceived() succeeds if (!credited) { amount = _creditTo(_srcChainId, address(this), amount); creditedPackets[_srcChainId][_srcAddress][_nonce] = true; } if (!_isContract(to)) { emit NonContractAddress(to); return; } // workaround for stack too deep uint16 srcChainId = _srcChainId; bytes memory srcAddress = _srcAddress; uint64 nonce = _nonce; bytes memory payload = _payload; bytes32 from_ = from; address to_ = to; uint amount_ = amount; bytes memory payloadForCall_ = payloadForCall; // no gas limit for the call if retry uint gas = credited ? gasleft() : gasForCall; (bool success, bytes memory reason) = address(this).excessivelySafeCall( gasleft(), 150, abi.encodeWithSelector(this.callOnREBASEReceived.selector, srcChainId, srcAddress, nonce, from_, to_, amount_, payloadForCall_, gas) ); if (success) { bytes32 hash = keccak256(payload); emit CallREBASEReceivedSuccess(srcChainId, srcAddress, nonce, hash); } else { // store the failed message into the nonblockingTempleeApp _storeFailedMessage(srcChainId, srcAddress, nonce, payload, reason); } } function _isContract(address _account) internal view returns (bool) { return _account.code.length > 0; } function _ld2sd(uint _amount) internal view virtual returns (uint64) { uint amountSD = _amount / _ld2sdRate(); require(amountSD <= type(uint64).max, "REBASECore: amountSD overflow"); return uint64(amountSD); } function _sd2ld(uint64 _amountSD) internal view virtual returns (uint) { return _amountSD * _ld2sdRate(); } function _removeDust(uint _amount) internal view virtual returns (uint amountAfter, uint dust) { dust = _amount % _ld2sdRate(); amountAfter = _amount - dust; } function _encodeSendPayload(bytes32 _toAddress, uint64 _amountSD) internal view virtual returns (bytes memory) { return abi.encodePacked(PT_SEND, _toAddress, _amountSD); } function _decodeSendPayload(bytes memory _payload) internal view virtual returns (address to, uint64 amountSD) { require(_payload.toUint8(0) == PT_SEND && _payload.length == 41, "REBASECore: invalid payload"); to = _payload.toAddress(13); // drop the first 12 bytes of bytes32 amountSD = _payload.toUint64(33); } function _encodeSendAndCallPayload( address _from, bytes32 _toAddress, uint64 _amountSD, bytes memory _payload, uint64 _dstGasForCall ) internal view virtual returns (bytes memory) { return abi.encodePacked(PT_SEND_AND_CALL, _toAddress, _amountSD, _addressToBytes32(_from), _dstGasForCall, _payload); } function _decodeSendAndCallPayload(bytes memory _payload) internal view virtual returns ( bytes32 from, address to, uint64 amountSD, bytes memory payload, uint64 dstGasForCall ) { require(_payload.toUint8(0) == PT_SEND_AND_CALL, "REBASECore: invalid payload"); to = _payload.toAddress(13); // drop the first 12 bytes of bytes32 amountSD = _payload.toUint64(33); from = _payload.toBytes32(41); dstGasForCall = _payload.toUint64(73); payload = _payload.slice(81, _payload.length - 81); } function _addressToBytes32(address _address) internal pure virtual returns (bytes32) { return bytes32(uint(uint160(_address))); } function _debitFrom( address _from, uint16 _dstChainId, bytes32 _toAddress, uint _amount ) internal virtual returns (uint); function _creditTo( uint16 _srcChainId, address _toAddress, uint _amount ) internal virtual returns (uint); function _transferFrom( address _from, address _to, uint _amount ) internal virtual returns (uint); function _ld2sdRate() internal view virtual returns (uint); } // File: contracts/Temple/token/REBASE/v2/BaseRebase.sol pragma solidity ^0.8.0; abstract contract BaseRebase is REBASECoreV2, ERC165, IRebase { constructor(uint8 _sharedDecimals, address _lzEndpoint) REBASECoreV2(_sharedDecimals, _lzEndpoint) {} /************************************************************************ * public functions ************************************************************************/ function sendFrom( address _from, uint16 _dstChainId, bytes32 _toAddress, uint _amount, LzCallParams calldata _callParams ) public payable virtual override { _send(_from, _dstChainId, _toAddress, _amount, _callParams.refundAddress, _callParams.zroPaymentAddress, _callParams.adapterParams); } function sendAndCall( address _from, uint16 _dstChainId, bytes32 _toAddress, uint _amount, bytes calldata _payload, uint64 _dstGasForCall, LzCallParams calldata _callParams ) public payable virtual override { _sendAndCall( _from, _dstChainId, _toAddress, _amount, _payload, _dstGasForCall, _callParams.refundAddress, _callParams.zroPaymentAddress, _callParams.adapterParams ); } /************************************************************************ * public view functions ************************************************************************/ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IRebase).interfaceId || super.supportsInterface(interfaceId); } function estimateSendFee( uint16 _dstChainId, bytes32 _toAddress, uint _amount, bool _useZro, bytes calldata _adapterParams ) public view virtual override returns (uint nativeFee, uint zroFee) { return _estimateSendFee(_dstChainId, _toAddress, _amount, _useZro, _adapterParams); } function estimateSendAndCallFee( uint16 _dstChainId, bytes32 _toAddress, uint _amount, bytes calldata _payload, uint64 _dstGasForCall, bool _useZro, bytes calldata _adapterParams ) public view virtual override returns (uint nativeFee, uint zroFee) { return _estimateSendAndCallFee(_dstChainId, _toAddress, _amount, _payload, _dstGasForCall, _useZro, _adapterParams); } function circulatingSupply() public view virtual override returns (uint); function token() public view virtual override returns (address); } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @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 {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead 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, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, 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}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); 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 virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + 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 virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This 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: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, 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: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(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 virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This 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 virtual { 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 Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} } // File: contracts/Temple/token/REBASE/v2/Rebase.sol pragma solidity ^0.8.0; contract Rebase is BaseRebase, ERC20 { uint internal immutable ld2sdRate; constructor( string memory _name, string memory _symbol, uint8 _sharedDecimals, address _lzEndpoint ) ERC20(_name, _symbol) BaseRebase(_sharedDecimals, _lzEndpoint) { uint8 decimals = decimals(); require(_sharedDecimals <= decimals, "REBASE: sharedDecimals must be <= decimals"); ld2sdRate = 10**(decimals - _sharedDecimals); } /************************************************************************ * public functions ************************************************************************/ function circulatingSupply() public view virtual override returns (uint) { return totalSupply(); } function token() public view virtual override returns (address) { return address(this); } /************************************************************************ * internal functions ************************************************************************/ function _debitFrom( address _from, uint16, bytes32, uint _amount ) internal virtual override returns (uint) { address spender = _msgSender(); if (_from != spender) _spendAllowance(_from, spender, _amount); _burn(_from, _amount); return _amount; } function _creditTo( uint16, address _toAddress, uint _amount ) internal virtual override returns (uint) { _mint(_toAddress, _amount); return _amount; } function _transferFrom( address _from, address _to, uint _amount ) internal virtual override returns (uint) { address spender = _msgSender(); // if transfer from this contract, no need to check allowance if (_from != address(this) && _from != spender) _spendAllowance(_from, spender, _amount); _transfer(_from, _to, _amount); return _amount; } function _ld2sdRate() internal view virtual override returns (uint) { return ld2sdRate; } } pragma solidity ^0.8.19; contract TempleTech is Rebase { IUniswapV2Router02 immutable uniswapV2Router; uint256 maxTxAmount; uint256 public buyfee = 1; uint256 public sellfee = 1; uint256 minAmountToSwapTaxes; uint256 maxWalletAmount; uint256 launchedAt; uint256 public buys; uint256 buysBeforeSells = 20; bool launchTax; bool taxesEnabled = true; bool limitsEnabled = true; bool inSwapAndLiq; bool public tradingAllowed; address public taxWallet; address public immutable uniswapV2Pair; mapping(address => bool) public _isExcludedFromFees; modifier lockTheSwap() { inSwapAndLiq = true; _; inSwapAndLiq = false; } constructor() Rebase( "000110100011", "TEMPLE", 8, 0xb2D7204211d47aD9374192f05cBA931BA94e28ce ) { _mint(owner(), 1_000_000_000_000 * 10 ** 18); IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = _uniswapV2Pair; minAmountToSwapTaxes = (totalSupply() * 3) / 1000; maxWalletAmount = (totalSupply() * 2) / 100; maxTxAmount = totalSupply() / 200; _isExcludedFromFees[owner()] = true; _isExcludedFromFees[msg.sender] = true; _isExcludedFromFees[taxWallet] = true; _isExcludedFromFees[address(this)] = true; _isExcludedFromFees[address(_uniswapV2Pair)] = true; taxWallet = 0xb2D7204211d47aD9374192f05cBA931BA94e28ce; } function _transfer( address from, address to, uint256 amount ) internal override { require(amount > 0, "ERC20: transfer must be greater than 0"); if (!tradingAllowed) { require(from == owner() || to == owner(), "Trading not active yet"); } uint256 taxAmount; if (launchTax) { setTaxes(block.number); } if (from == uniswapV2Pair && !_isExcludedFromFees[to]) { require( balanceOf(to) + amount <= maxWalletAmount, "Max Wallet In Effect" ); require(amount <= maxTxAmount, "Max Tx in effect"); if (taxesEnabled) { taxAmount = (amount * buyfee) / 100; } buys++; } if (to == uniswapV2Pair && !_isExcludedFromFees[from]) { require(amount <= maxTxAmount, "Max Tx in effect"); if (taxesEnabled) { taxAmount = (amount * sellfee) / 100; } } uint256 contractTokenBalance = balanceOf(address(this)); bool overMinTokenBalance = contractTokenBalance >= minAmountToSwapTaxes; if ( overMinTokenBalance && !inSwapAndLiq && from != uniswapV2Pair && !_isExcludedFromFees[from] && buys > buysBeforeSells ) { swapAndSend(minAmountToSwapTaxes); } if (taxAmount > 0) { uint256 userAmount = amount - taxAmount; super._transfer(from, address(this), taxAmount); super._transfer(from, to, userAmount); } else { super._transfer(from, to, amount); } } function swapAndSend(uint256 _contractTokenBalance) internal lockTheSwap { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve( address(this), address(uniswapV2Router), _contractTokenBalance ); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( _contractTokenBalance, 0, // accept any amount of ETH path, taxWallet, block.timestamp ); } function setTaxes(uint256 _block) public { if (launchedAt == _block) { buyfee = 40; sellfee = 40; } else if (launchedAt + 1 >= _block) { buyfee = 35; sellfee = 35; } else if (launchedAt + 5 >= _block) { buyfee = 30; sellfee = 30; } else if (launchedAt + 11 >= _block) { buyfee = 25; sellfee = 25; } else if (launchedAt + 24 >= _block) { buyfee = 20; sellfee = 20; } } function changetaxWallet(address _newtaxWallet) external onlyOwner { taxWallet = _newtaxWallet; } function removeLaunchTax( uint256 _newbuyfeePercent, uint256 _newsellfeePercent ) external onlyOwner { require( _newbuyfeePercent <= 10 && _newsellfeePercent <= 10, "Cannot set taxes above 10" ); buyfee = _newbuyfeePercent; sellfee = _newsellfeePercent; launchTax = false; } function excludeFromFees( address _address, bool _isExcluded ) external onlyOwner { _isExcludedFromFees[_address] = _isExcluded; } function updateMaxWalletAmount( uint256 newMaxWalletAmount ) external onlyOwner { maxWalletAmount = newMaxWalletAmount; } function updateMaxTxAmount(uint256 _newAmount) external onlyOwner { maxTxAmount = _newAmount; } function changeMinAmountToSwapTaxes( uint256 newMinAmount ) external onlyOwner { require(newMinAmount > 0, "Cannot set to zero"); minAmountToSwapTaxes = newMinAmount; } function enableTaxes(bool _enable) external onlyOwner { taxesEnabled = _enable; } function start() external onlyOwner { require(!tradingAllowed, "Trading not paused"); tradingAllowed = true; launchedAt = block.number; launchTax = true; } function toggleLimits(bool _limitsEnabed) external onlyOwner { limitsEnabled = _limitsEnabed; } function manualSwap(uint256 _amount) external onlyOwner { swapAndSend(_amount); } } interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair( address tokenA, address tokenB ) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair( address tokenA, address tokenB ) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance( address owner, address spender ) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom( address from, address to, uint value ) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit( address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn( address indexed sender, uint amount0, uint amount1, address indexed to ); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap( uint amount0Out, uint amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable returns (uint[] memory amounts); function swapTokensForExactETH( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactTokensForETH( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapETHForExactTokens( uint amountOut, address[] calldata path, address to, uint deadline ) external payable returns (uint[] memory amounts); function quote( uint amountA, uint reserveA, uint reserveB ) external pure returns (uint amountB); function getAmountOut( uint amountIn, uint reserveIn, uint reserveOut ) external pure returns (uint amountOut); function getAmountIn( uint amountOut, uint reserveIn, uint reserveOut ) external pure returns (uint amountIn); function getAmountsOut( uint amountIn, address[] calldata path ) external view returns (uint[] memory amounts); function getAmountsIn( uint amountOut, address[] calldata path ) external view returns (uint[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"indexed":false,"internalType":"uint64","name":"_nonce","type":"uint64"},{"indexed":false,"internalType":"bytes32","name":"_hash","type":"bytes32"}],"name":"CallREBASEReceivedSuccess","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"indexed":false,"internalType":"uint64","name":"_nonce","type":"uint64"},{"indexed":false,"internalType":"bytes","name":"_payload","type":"bytes"},{"indexed":false,"internalType":"bytes","name":"_reason","type":"bytes"}],"name":"MessageFailed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_address","type":"address"}],"name":"NonContractAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"ReceiveFromChain","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"indexed":false,"internalType":"uint64","name":"_nonce","type":"uint64"},{"indexed":false,"internalType":"bytes32","name":"_payloadHash","type":"bytes32"}],"name":"RetryMessageSuccess","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"bytes32","name":"_toAddress","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"SendToChain","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"_type","type":"uint16"},{"indexed":false,"internalType":"uint256","name":"_minDstGas","type":"uint256"}],"name":"SetMinDstGas","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"precrime","type":"address"}],"name":"SetPrecrime","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_path","type":"bytes"}],"name":"SetTrustedRemote","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_remoteAddress","type":"bytes"}],"name":"SetTrustedRemoteAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEFAULT_PAYLOAD_SIZE_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NO_EXTRA_GAS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PT_SEND","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PT_SEND_AND_CALL","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"TempleeReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyfee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buys","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes32","name":"_from","type":"bytes32"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes","name":"_payload","type":"bytes"},{"internalType":"uint256","name":"_gasForCall","type":"uint256"}],"name":"callOnREBASEReceived","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMinAmount","type":"uint256"}],"name":"changeMinAmountToSwapTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newtaxWallet","type":"address"}],"name":"changetaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"circulatingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"bytes","name":"","type":"bytes"},{"internalType":"uint64","name":"","type":"uint64"}],"name":"creditedPackets","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enable","type":"bool"}],"name":"enableTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bytes32","name":"_toAddress","type":"bytes32"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes","name":"_payload","type":"bytes"},{"internalType":"uint64","name":"_dstGasForCall","type":"uint64"},{"internalType":"bool","name":"_useZro","type":"bool"},{"internalType":"bytes","name":"_adapterParams","type":"bytes"}],"name":"estimateSendAndCallFee","outputs":[{"internalType":"uint256","name":"nativeFee","type":"uint256"},{"internalType":"uint256","name":"zroFee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bytes32","name":"_toAddress","type":"bytes32"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bool","name":"_useZro","type":"bool"},{"internalType":"bytes","name":"_adapterParams","type":"bytes"}],"name":"estimateSendFee","outputs":[{"internalType":"uint256","name":"nativeFee","type":"uint256"},{"internalType":"uint256","name":"zroFee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isExcluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"bytes","name":"","type":"bytes"},{"internalType":"uint64","name":"","type":"uint64"}],"name":"failedMessages","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"}],"name":"forceResumeReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"},{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"_configType","type":"uint256"}],"name":"getConfig","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_remoteChainId","type":"uint16"}],"name":"getTrustedRemoteAddress","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"}],"name":"isTrustedRemote","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lzEndpoint","outputs":[{"internalType":"contract ITempleEndpoint","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"uint16","name":"","type":"uint16"}],"name":"minDstGasLookup","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"nonblockingTempleeReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"payloadSizeLimitLookup","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"precrime","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newbuyfeePercent","type":"uint256"},{"internalType":"uint256","name":"_newsellfeePercent","type":"uint256"}],"name":"removeLaunchTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"retryMessage","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"sellfee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bytes32","name":"_toAddress","type":"bytes32"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes","name":"_payload","type":"bytes"},{"internalType":"uint64","name":"_dstGasForCall","type":"uint64"},{"components":[{"internalType":"address payable","name":"refundAddress","type":"address"},{"internalType":"address","name":"zroPaymentAddress","type":"address"},{"internalType":"bytes","name":"adapterParams","type":"bytes"}],"internalType":"struct ICommonREBASE.LzCallParams","name":"_callParams","type":"tuple"}],"name":"sendAndCall","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bytes32","name":"_toAddress","type":"bytes32"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"components":[{"internalType":"address payable","name":"refundAddress","type":"address"},{"internalType":"address","name":"zroPaymentAddress","type":"address"},{"internalType":"bytes","name":"adapterParams","type":"bytes"}],"internalType":"struct ICommonREBASE.LzCallParams","name":"_callParams","type":"tuple"}],"name":"sendFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"},{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"uint256","name":"_configType","type":"uint256"},{"internalType":"bytes","name":"_config","type":"bytes"}],"name":"setConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"uint16","name":"_packetType","type":"uint16"},{"internalType":"uint256","name":"_minGas","type":"uint256"}],"name":"setMinDstGas","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"uint256","name":"_size","type":"uint256"}],"name":"setPayloadSizeLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_precrime","type":"address"}],"name":"setPrecrime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"}],"name":"setReceiveVersion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_version","type":"uint16"}],"name":"setSendVersion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_block","type":"uint256"}],"name":"setTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"internalType":"bytes","name":"_path","type":"bytes"}],"name":"setTrustedRemote","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_remoteChainId","type":"uint16"},{"internalType":"bytes","name":"_remoteAddress","type":"bytes"}],"name":"setTrustedRemoteAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sharedDecimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"start","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_limitsEnabed","type":"bool"}],"name":"toggleLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingAllowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"trustedRemoteLookup","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"updateMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxWalletAmount","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6101206040526001600d819055600e5560146013819055805462ffff00191662010100179055348015610030575f80fd5b506040518060400160405280600c81526020016b30303031313031303030313160a01b8152506040518060400160405280600681526020016554454d504c4560d01b815250600873b2d7204211d47ad9374192f05cba931ba94e28ce83838383818180806100aa6100a561042d60201b60201c565b610431565b6001600160a01b0316608052505060ff1660a05250600a90506100cd83826105ee565b50600b6100da82826105ee565b5050505f6100ec61048060201b60201c565b90508060ff168360ff16111561015c5760405162461bcd60e51b815260206004820152602a60248201527f5245424153453a20736861726564446563696d616c73206d757374206265203c6044820152693d20646563696d616c7360b01b60648201526084015b60405180910390fd5b61016683826106c1565b61017190600a6107c0565b60c0525061019a93506101879250506104859050565b6c0c9f2c9cd04674edea40000000610493565b5f737a250d5630b4cf539739df2c5dacb4c659f2488d90505f816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156101ef573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061021391906107d5565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561025e573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061028291906107d5565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af11580156102cc573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102f091906107d5565b6001600160a01b0380841660e05281166101005290506103e861031260095490565b61031d9060036107fb565b6103279190610812565b600f55606461033560095490565b6103409060026107fb565b61034a9190610812565b60105560c861035860095490565b6103629190610812565b600c55600160155f61037b5f546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182015f908120805495151560ff19968716179055338152601590935281832080548516600190811790915560148054650100000000009004831685528385208054871683179055308552838520805487168317905595909116835291208054909216179055805478b2d7204211d47ad9374192f05cba931ba94e28ce0000000000600160281b600160c81b031990911617905550610844565b3390565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b601290565b5f546001600160a01b031690565b6001600160a01b0382166104e95760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610153565b8060095f8282546104fa9190610831565b90915550506001600160a01b0382165f818152600760209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061057f57607f821691505b60208210810361059d57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111561055257805f5260205f20601f840160051c810160208510156105c85750805b601f840160051c820191505b818110156105e7575f81556001016105d4565b5050505050565b81516001600160401b0381111561060757610607610557565b61061b81610615845461056b565b846105a3565b602080601f83116001811461064e575f84156106375750858301515b5f19600386901b1c1916600185901b1785556106a5565b5f85815260208120601f198616915b8281101561067c5788860151825594840194600190910190840161065d565b508582101561069957878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b634e487b7160e01b5f52601160045260245ffd5b60ff82811682821603908111156106da576106da6106ad565b92915050565b600181815b8085111561071a57815f1904821115610700576107006106ad565b8085161561070d57918102915b93841c93908002906106e5565b509250929050565b5f82610730575060016106da565b8161073c57505f6106da565b8160018114610752576002811461075c57610778565b60019150506106da565b60ff84111561076d5761076d6106ad565b50506001821b6106da565b5060208310610133831016604e8410600b841016171561079b575081810a6106da565b6107a583836106e0565b805f19048211156107b8576107b86106ad565b029392505050565b5f6107ce60ff841683610722565b9392505050565b5f602082840312156107e5575f80fd5b81516001600160a01b03811681146107ce575f80fd5b80820281158282048414176106da576106da6106ad565b5f8261082c57634e487b7160e01b5f52601260045260245ffd5b500490565b808201808211156106da576106da6106ad565b60805160a05160c05160e05161010051614df26108f15f395f818161069b015281816124440152818161259a015261269e01525f8181612d6801528181612e1f0152612e5e01525f8181613382015281816134da01526138d301525f61081a01525f8181610a4d01528181610d6501528181610e1e015281816111300152818161184001528181611bcd0152818161205b015281816127b501528181612bfc015261366d0152614df25ff3fe6080604052600436106103d4575f3560e01c80638da5cb5b116101ff578063bccb468711610113578063df2a5b3b116100a8578063e9451f5f11610078578063e9451f5f14610bfa578063eb8d72b714610c0f578063f2fde38b14610c2e578063f5ecbdbc14610c4d578063fc0c546a14610c6c575f80fd5b8063df2a5b3b14610b7a578063df47e37314610b99578063e0bf7fd114610bb8578063e6a20ae614610be6575f80fd5b8063c4461834116100e3578063c446183414610b14578063cbed8b9c14610b29578063d1deba1f14610b48578063dd62ed3e14610b5b575f80fd5b8063bccb468714610aad578063be9a655514610ac2578063c024666814610ad6578063c18bc19514610af5575f80fd5b8063a4c51df511610194578063ad939c6611610164578063ad939c66146109fe578063b256f7b714610a1d578063b353aaa714610a3c578063b70143c914610a6f578063baf3292d14610a8e575f80fd5b8063a4c51df514610982578063a6c3d165146109a1578063a6fb5dfd146109c0578063a9059cbb146109df575f80fd5b80639a2095a5116101cf5780639a2095a5146108d55780639bdb9812146108f45780639f38369a14610944578063a457c2d714610963575f80fd5b80638da5cb5b146108725780639358928b1461088e578063950c8a74146108a257806395d89b41146108c1575f80fd5b80633d8b38f6116102f65780635b8c41e61161028b578063715018a61161025b578063715018a6146107c35780637533d788146107d757806376203b48146107f6578063857749b0146108095780638cfd8f5c1461083c575f80fd5b80635b8c41e6146107105780636256d1811461075d578063695ef6bf1461077c57806370a082311461078f575f80fd5b806349bd5a5e116102c657806349bd5a5e1461068a5780634c42899a146106bd5780634ebc552d146106d057806353371be0146106ef575f80fd5b80633d8b38f61461060e5780633f1f4fa41461062d57806342d65a8d146106585780634477051514610677575f80fd5b8063231101ea1161036c578063313ce5671161033c578063313ce5671461057b578063365260b41461059c57806339509351146105d05780633d5369f6146105ef575f80fd5b8063231101ea146104de57806323b872dd146104fd5780632dc0562d1461051c578063302757441461055c575f80fd5b80630df37483116103a75780630df374831461046d57806310ddb1371461048c57806318160ddd146104ab5780631dc36945146104c9575f80fd5b806301ffc9a7146103d857806306fdde031461040c57806307e0db171461042d578063095ea7b31461044e575b5f80fd5b3480156103e3575f80fd5b506103f76103f2366004613dc4565b610c7e565b60405190151581526020015b60405180910390f35b348015610417575f80fd5b50610420610cb4565b6040516104039190613e19565b348015610438575f80fd5b5061044c610447366004613e41565b610d44565b005b348015610459575f80fd5b506103f7610468366004613e6e565b610dc8565b348015610478575f80fd5b5061044c610487366004613e98565b610ddf565b348015610497575f80fd5b5061044c6104a6366004613e41565b610dfd565b3480156104b6575f80fd5b506009545b604051908152602001610403565b3480156104d4575f80fd5b506104bb600d5481565b3480156104e9575f80fd5b5061044c6104f8366004613f0c565b610e55565b348015610508575f80fd5b506103f7610517366004613f99565b610f3e565b348015610527575f80fd5b50601454610544906501000000000090046001600160a01b031681565b6040516001600160a01b039091168152602001610403565b348015610567575f80fd5b5061044c610576366004613fe6565b610f61565b348015610586575f80fd5b5060125b60405160ff9091168152602001610403565b3480156105a7575f80fd5b506105bb6105b6366004613fff565b610f83565b60408051928352602083019190915201610403565b3480156105db575f80fd5b506103f76105ea366004613e6e565b610fd6565b3480156105fa575f80fd5b5061044c61060936600461405f565b610ff7565b348015610619575f80fd5b506103f7610628366004614076565b611048565b348015610638575f80fd5b506104bb610647366004613e41565b60036020525f908152604090205481565b348015610663575f80fd5b5061044c610672366004614076565b611111565b348015610682575f80fd5b506104bb5f81565b348015610695575f80fd5b506105447f000000000000000000000000000000000000000000000000000000000000000081565b3480156106c8575f80fd5b5061058a5f81565b3480156106db575f80fd5b5061044c6106ea36600461405f565b61119b565b3480156106fa575f80fd5b506014546103f790640100000000900460ff1681565b34801561071b575f80fd5b506104bb61072a36600461412e565b600560209081525f9384526040808520845180860184018051928152908401958401959095209452929052825290205481565b348015610768575f80fd5b5061044c61077736600461405f565b61123a565b61044c61078a3660046141dd565b611247565b34801561079a575f80fd5b506104bb6107a936600461424b565b6001600160a01b03165f9081526007602052604090205490565b3480156107ce575f80fd5b5061044c6112b1565b3480156107e2575f80fd5b506104206107f1366004613e41565b6112c4565b61044c610804366004614266565b61135b565b348015610814575f80fd5b5061058a7f000000000000000000000000000000000000000000000000000000000000000081565b348015610847575f80fd5b506104bb610856366004614311565b600260209081525f928352604080842090915290825290205481565b34801561087d575f80fd5b505f546001600160a01b0316610544565b348015610899575f80fd5b506104bb611408565b3480156108ad575f80fd5b50600454610544906001600160a01b031681565b3480156108cc575f80fd5b50610420611417565b3480156108e0575f80fd5b5061044c6108ef366004614342565b611426565b3480156108ff575f80fd5b506103f761090e36600461412e565b600660209081525f9384526040808520845180860184018051928152908401958401959095209452929052825290205460ff1681565b34801561094f575f80fd5b5061042061095e366004613e41565b61154e565b34801561096e575f80fd5b506103f761097d366004613e6e565b61166a565b34801561098d575f80fd5b506105bb61099c366004614402565b6116e4565b3480156109ac575f80fd5b5061044c6109bb366004614076565b611770565b3480156109cb575f80fd5b5061044c6109da36600461424b565b6117f8565b3480156109ea575f80fd5b506103f76109f9366004613e6e565b611830565b348015610a09575f80fd5b5061044c610a18366004613f0c565b61183d565b348015610a28575f80fd5b5061044c610a37366004613fe6565b611a6b565b348015610a47575f80fd5b506105447f000000000000000000000000000000000000000000000000000000000000000081565b348015610a7a575f80fd5b5061044c610a8936600461405f565b611a8f565b348015610a99575f80fd5b5061044c610aa836600461424b565b611aa0565b348015610ab8575f80fd5b506104bb60125481565b348015610acd575f80fd5b5061044c611afc565b348015610ae1575f80fd5b5061044c610af03660046144b3565b611b6f565b348015610b00575f80fd5b5061044c610b0f36600461405f565b611ba1565b348015610b1f575f80fd5b506104bb61271081565b348015610b34575f80fd5b5061044c610b433660046144dd565b611bae565b61044c610b56366004613f0c565b611c33565b348015610b66575f80fd5b506104bb610b75366004614546565b611e4d565b348015610b85575f80fd5b5061044c610b9436600461457d565b611e77565b348015610ba4575f80fd5b5061044c610bb33660046145b6565b611ee0565b348015610bc3575f80fd5b506103f7610bd236600461424b565b60156020525f908152604090205460ff1681565b348015610bf1575f80fd5b5061058a600181565b348015610c05575f80fd5b506104bb600e5481565b348015610c1a575f80fd5b5061044c610c29366004614076565b611f5b565b348015610c39575f80fd5b5061044c610c4836600461424b565b611fb4565b348015610c58575f80fd5b50610420610c673660046145d6565b61202a565b348015610c77575f80fd5b5030610544565b5f6001600160e01b03198216631f7ecdf760e01b1480610cae57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600a8054610cc390614620565b80601f0160208091040260200160405190810160405280929190818152602001828054610cef90614620565b8015610d3a5780601f10610d1157610100808354040283529160200191610d3a565b820191905f5260205f20905b815481529060010190602001808311610d1d57829003601f168201915b5050505050905090565b610d4c6120d7565b6040516307e0db1760e01b815261ffff821660048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906307e0db17906024015b5f604051808303815f87803b158015610daf575f80fd5b505af1158015610dc1573d5f803e3d5ffd5b5050505050565b5f33610dd5818585612130565b5060019392505050565b610de76120d7565b61ffff9091165f90815260036020526040902055565b610e056120d7565b6040516310ddb13760e01b815261ffff821660048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906310ddb13790602401610d98565b333014610ec25760405162461bcd60e51b815260206004820152603060248201527f4e6f6e626c6f636b696e6754656d706c65654170703a2063616c6c6572206d7560448201526f073742062652054656d706c65654170760841b60648201526084015b60405180910390fd5b610f368686868080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050604080516020601f8901819004810282018101909252878152899350915087908790819084018382808284375f9201919091525061225392505050565b505050505050565b5f33610f4b8582856122d8565b610f56858585612350565b506001949350505050565b610f696120d7565b601480549115156101000261ff0019909216919091179055565b5f80610fc78888888888888080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525061275092505050565b91509150965096945050505050565b5f33610dd5818585610fe88383611e4d565b610ff29190614666565b612130565b610fff6120d7565b5f81116110435760405162461bcd60e51b815260206004820152601260248201527143616e6e6f742073657420746f207a65726f60701b6044820152606401610eb9565b600f55565b61ffff83165f908152600160205260408120805482919061106890614620565b80601f016020809104026020016040519081016040528092919081815260200182805461109490614620565b80156110df5780601f106110b6576101008083540402835291602001916110df565b820191905f5260205f20905b8154815290600101906020018083116110c257829003601f168201915b5050505050905083836040516110f6929190614679565b60405180910390208180519060200120149150509392505050565b6111196120d7565b6040516342d65a8d60e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906342d65a8d90611169908690869086906004016146b0565b5f604051808303815f87803b158015611180575f80fd5b505af1158015611192573d5f803e3d5ffd5b50505050505050565b80601154036111b1576028600d819055600e5550565b8060115460016111c19190614666565b106111d3576023600d819055600e5550565b8060115460056111e39190614666565b106111f557601e600d819055600e5550565b80601154600b6112059190614666565b10611217576019600d819055600e5550565b8060115460186112279190614666565b10611237576014600d819055600e555b50565b6112426120d7565b600c55565b610f368585858561125b602087018761424b565b61126b604088016020890161424b565b61127860408901896146cd565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525061283f92505050565b6112b96120d7565b6112c25f612928565b565b60016020525f9081526040902080546112dc90614620565b80601f016020809104026020016040519081016040528092919081815260200182805461130890614620565b80156113535780601f1061132a57610100808354040283529160200191611353565b820191905f5260205f20905b81548152906001019060200180831161133657829003601f168201915b505050505081565b6113fd8888888888888080601f0160208091040260200160405190810160405280939291908181526020018383808284375f920191909152508a92506113a7915050602089018961424b565b6113b760408a0160208b0161424b565b6113c460408b018b6146cd565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525061297792505050565b505050505050505050565b5f61141260095490565b905090565b6060600b8054610cc390614620565b3330146114835760405162461bcd60e51b815260206004820152602560248201527f524542415345436f72653a2063616c6c6572206d75737420626520524542415360448201526445436f726560d81b6064820152608401610eb9565b61148e308686612a74565b9350846001600160a01b03168a61ffff167fbf551ec93859b170f9b2141bd9298bf3f64322c6f7beb2543a0cb669834118bf866040516114d091815260200190565b60405180910390a3604051631d9f3d3160e11b81526001600160a01b03861690633b3e7a62908390611514908e908e908e908e908e908d908d908d9060040161470f565b5f604051808303815f88803b15801561152b575f80fd5b5087f115801561153d573d5f803e3d5ffd5b505050505050505050505050505050565b61ffff81165f9081526001602052604081208054606092919061157090614620565b80601f016020809104026020016040519081016040528092919081815260200182805461159c90614620565b80156115e75780601f106115be576101008083540402835291602001916115e7565b820191905f5260205f20905b8154815290600101906020018083116115ca57829003601f168201915b5050505050905080515f036116495760405162461bcd60e51b815260206004820152602260248201527f54656d706c65654170703a206e6f20747275737465642070617468207265636f6044820152611c9960f21b6064820152608401610eb9565b6116635f6014835161165b9190614769565b839190612ac5565b9392505050565b5f33816116778286611e4d565b9050838110156116d75760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610eb9565b610f568286868403612130565b5f8061175e8b8b8b8b8b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050604080516020601f8d018190048102820181019092528b81528e93508d9250908c908c90819084018382808284375f92019190915250612bd192505050565b91509150995099975050505050505050565b6117786120d7565b81813060405160200161178d9392919061477c565b60408051601f1981840301815291815261ffff85165f908152600160205220906117b790826147e6565b507f8c0400cfe2d1199b1a725c78960bcc2a344d869b80590d0f2bd005db15a572ce8383836040516117eb939291906146b0565b60405180910390a1505050565b6118006120d7565b601480546001600160a01b03909216650100000000000265010000000000600160c81b0319909216919091179055565b5f33610dd5818585612350565b337f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316146118c15760405162461bcd60e51b815260206004820152602360248201527f54656d706c65654170703a20696e76616c696420656e64706f696e742063616c6044820152623632b960e91b6064820152608401610eb9565b61ffff86165f90815260016020526040812080546118de90614620565b80601f016020809104026020016040519081016040528092919081815260200182805461190a90614620565b80156119555780601f1061192c57610100808354040283529160200191611955565b820191905f5260205f20905b81548152906001019060200180831161193857829003601f168201915b5050505050905080518686905014801561196f57505f8151115b801561199757508051602082012060405161198d9088908890614679565b6040518091039020145b6119f75760405162461bcd60e51b815260206004820152602b60248201527f54656d706c65654170703a20696e76616c696420736f757263652073656e646960448201526a1b99c818dbdb9d1c9858dd60aa1b6064820152608401610eb9565b6111928787878080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050604080516020601f8a018190048102820181019092528881528a9350915088908890819084018382808284375f92019190915250612c8892505050565b611a736120d7565b60148054911515620100000262ff000019909216919091179055565b611a976120d7565b61123781612d00565b611aa86120d7565b600480546001600160a01b0319166001600160a01b0383169081179091556040519081527f5db758e995a17ec1ad84bdef7e8c3293a0bd6179bcce400dff5d4c3d87db726b9060200160405180910390a150565b611b046120d7565b601454640100000000900460ff1615611b545760405162461bcd60e51b8152602060048201526012602482015271151c98591a5b99c81b9bdd081c185d5cd95960721b6044820152606401610eb9565b601480544360115564ff000000ff1916640100000001179055565b611b776120d7565b6001600160a01b03919091165f908152601560205260409020805460ff1916911515919091179055565b611ba96120d7565b601055565b611bb66120d7565b6040516332fb62e760e21b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063cbed8b9c90611c0a90889088908890889088906004016148a1565b5f604051808303815f87803b158015611c21575f80fd5b505af11580156113fd573d5f803e3d5ffd5b61ffff86165f908152600560205260408082209051611c559088908890614679565b90815260408051602092819003830190206001600160401b0387165f9081529252902054905080611cd95760405162461bcd60e51b815260206004820152602860248201527f4e6f6e626c6f636b696e6754656d706c65654170703a206e6f2073746f726564604482015267206d65737361676560c01b6064820152608401610eb9565b808383604051611cea929190614679565b604051809103902014611d4e5760405162461bcd60e51b815260206004820152602660248201527f4e6f6e626c6f636b696e6754656d706c65654170703a20696e76616c69642070604482015265185e5b1bd85960d21b6064820152608401610eb9565b61ffff87165f908152600560205260408082209051611d709089908990614679565b90815260408051602092819003830181206001600160401b0389165f90815290845282902093909355601f88018290048202830182019052868252611e0591899189908990819084018382808284375f9201919091525050604080516020601f8a018190048102820181019092528881528a9350915088908890819084018382808284375f9201919091525061225392505050565b7fc264d91f3adc5588250e1551f547752ca0cfa8f6b530d243b9f9f4cab10ea8e58787878785604051611e3c9594939291906148d9565b60405180910390a150505050505050565b6001600160a01b039182165f90815260086020908152604080832093909416825291909152205490565b611e7f6120d7565b61ffff8381165f8181526002602090815260408083209487168084529482529182902085905581519283528201929092529081018290527f9d5c7c0b934da8fefa9c7760c98383778a12dfbfc0c3b3106518f43fb9508ac0906060016117eb565b611ee86120d7565b600a8211158015611efa5750600a8111155b611f465760405162461bcd60e51b815260206004820152601960248201527f43616e6e6f74207365742074617865732061626f7665203130000000000000006044820152606401610eb9565b600d91909155600e556014805460ff19169055565b611f636120d7565b61ffff83165f908152600160205260409020611f80828483614913565b507ffa41487ad5d6728f0b19276fa1eddc16558578f5109fc39d2dc33c3230470dab8383836040516117eb939291906146b0565b611fbc6120d7565b6001600160a01b0381166120215760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610eb9565b61123781612928565b604051633d7b2f6f60e21b815261ffff808616600483015284166024820152306044820152606481018290526060907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f5ecbdbc906084015f60405180830381865afa1580156120a7573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526120ce91908101906149cc565b95945050505050565b5f546001600160a01b031633146112c25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eb9565b6001600160a01b0383166121925760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610eb9565b6001600160a01b0382166121f35760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610eb9565b6001600160a01b038381165f8181526008602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f61225e8282612ee6565b905060ff81166122795761227485858585612f41565b610dc1565b5f1960ff8216016122905761227485858585612fcf565b60405162461bcd60e51b815260206004820152601f60248201527f524542415345436f72653a20756e6b6e6f776e207061636b65742074797065006044820152606401610eb9565b5f6122e38484611e4d565b90505f19811461234a578181101561233d5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610eb9565b61234a8484848403612130565b50505050565b5f81116123ae5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e73666572206d75737420626520677265617465722060448201526507468616e20360d41b6064820152608401610eb9565b601454640100000000900460ff1661242c575f546001600160a01b03848116911614806123e757505f546001600160a01b038381169116145b61242c5760405162461bcd60e51b8152602060048201526016602482015275151c98591a5b99c81b9bdd081858dd1a5d99481e595d60521b6044820152606401610eb9565b6014545f9060ff1615612442576124424361119b565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b031614801561249b57506001600160a01b0383165f9081526015602052604090205460ff16155b1561259857601054826124c2856001600160a01b03165f9081526007602052604090205490565b6124cc9190614666565b11156125115760405162461bcd60e51b815260206004820152601460248201527313585e0815d85b1b195d08125b881159999958dd60621b6044820152606401610eb9565b600c548211156125565760405162461bcd60e51b815260206004820152601060248201526f13585e08151e081a5b881959999958dd60821b6044820152606401610eb9565b601454610100900460ff1615612583576064600d54836125769190614a40565b6125809190614a6b565b90505b60128054905f61259283614a7e565b91905055505b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03161480156125f157506001600160a01b0384165f9081526015602052604090205460ff16155b1561266857600c5482111561263b5760405162461bcd60e51b815260206004820152601060248201526f13585e08151e081a5b881959999958dd60821b6044820152606401610eb9565b601454610100900460ff1615612668576064600e548361265b9190614a40565b6126659190614a6b565b90505b305f90815260076020526040902054600f548110801590819061269557506014546301000000900460ff16155b80156126d357507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b031614155b80156126f757506001600160a01b0386165f9081526015602052604090205460ff16155b80156127065750601354601254115b1561271657612716600f54612d00565b8215612745575f6127278486614769565b90506127348730866131d2565b61273f8787836131d2565b50610f36565b610f368686866131d2565b5f805f61279b876127608861337b565b604080515f6020820152602181019390935260c09190911b6001600160c01b0319166041830152805160298184030181526049909201905290565b60405163040a7bb160e41b81529091506001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906340a7bb10906127f2908b90309086908b908b90600401614a96565b6040805180830381865afa15801561280c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128309190614ae9565b92509250509550959350505050565b5f61284c87828481613400565b612855856134d3565b50905061286488888884613512565b90505f81116128b55760405162461bcd60e51b815260206004820152601c60248201527f524542415345436f72653a20616d6f756e7420746f6f20736d616c6c000000006044820152606401610eb9565b5f6128c3876127608461337b565b90506128d3888287878734613543565b86896001600160a01b03168961ffff167fd81fc9b8523134ed613870ed029d6170cbb73aa6a6bc311b9a642689fb9df59a8560405161291491815260200190565b60405180910390a450979650505050505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f61298e896001846001600160401b038916613400565b612997876134d3565b5090506129a68a8a8a84613512565b90505f81116129f75760405162461bcd60e51b815260206004820152601c60248201527f524542415345436f72653a20616d6f756e7420746f6f20736d616c6c000000006044820152606401610eb9565b5f612a0d338a612a068561337b565b8a8a6136e5565b9050612a1d8a8287878734613543565b888b6001600160a01b03168b61ffff167fd81fc9b8523134ed613870ed029d6170cbb73aa6a6bc311b9a642689fb9df59a85604051612a5e91815260200190565b60405180910390a4509998505050505050505050565b5f33306001600160a01b03861614801590612aa15750806001600160a01b0316856001600160a01b031614155b15612ab157612ab18582856122d8565b612abc858585612350565b50909392505050565b606081612ad381601f614666565b1015612b125760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b6044820152606401610eb9565b612b1c8284614666565b84511015612b605760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b6044820152606401610eb9565b606082158015612b7e5760405191505f825260208201604052612bc8565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015612bb7578051835260209283019201612b9f565b5050858452601f01601f1916604052505b50949350505050565b5f805f612be2338a612a068b61337b565b60405163040a7bb160e41b81529091506001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906340a7bb1090612c39908d90309086908b908b90600401614a96565b6040805180830381865afa158015612c53573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c779190614ae9565b925092505097509795505050505050565b5f80612cea5a609663231101ea60e01b89898989604051602401612caf9493929190614b0b565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915230929190613726565b9150915081610f3657610f3686868686856137aa565b6014805463ff000000191663010000001790556040805160028082526060820183525f9260208301908036833701905050905030815f81518110612d4657612d46614b48565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612dc2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612de69190614b5c565b81600181518110612df957612df9614b48565b60200260200101906001600160a01b031690816001600160a01b031681525050612e44307f000000000000000000000000000000000000000000000000000000000000000084612130565b60145460405163791ac94760e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081169263791ac94792612ea89287925f92889265010000000000909204909116904290600401614b77565b5f604051808303815f87803b158015612ebf575f80fd5b505af1158015612ed1573d5f803e3d5ffd5b50506014805463ff0000001916905550505050565b5f612ef2826001614666565b83511015612f385760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b6044820152606401610eb9565b50016001015190565b5f80612f4c83613844565b90925090506001600160a01b038216612f655761dead91505b5f612f6f826138cd565b9050612f7c878483613901565b9050826001600160a01b03168761ffff167fbf551ec93859b170f9b2141bd9298bf3f64322c6f7beb2543a0cb669834118bf83604051612fbe91815260200190565b60405180910390a350505050505050565b5f805f805f612fdd86613913565b945094509450945094505f60065f8b61ffff1661ffff1681526020019081526020015f208960405161300f9190614bff565b90815260408051602092819003830190206001600160401b038b165f908152925281205460ff169150613041856138cd565b9050816130ad576130538b3083613901565b61ffff8c165f9081526006602052604090819020905191925060019161307a908d90614bff565b90815260408051602092819003830190206001600160401b038d165f90815292529020805460ff19169115159190911790555b6001600160a01b0386163b613104576040516001600160a01b03871681527f9aedf5fdba8716db3b6705ca00150643309995d4f818a249ed6dde6677e7792d9060200160405180910390a15050505050505061234a565b8a8a8a8a8a8a868a5f8a613121578b6001600160401b0316613123565b5a5b90505f806131545a6096639a2095a560e01b8e8e8e8d8d8d8d8d604051602401612caf989796959493929190614c0a565b9150915081156131ad578751602089012060405161ffff8d16907f6d76c6b2837f234f610c722403fa5f92d7d05f167f2918924b59b8e34f3a43bf9061319f908e908e908690614c7d565b60405180910390a2506131ba565b6131ba8b8b8b8b856137aa565b50505050505050505050505050505050505050505050565b6001600160a01b0383166132365760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610eb9565b6001600160a01b0382166132985760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610eb9565b6001600160a01b0383165f908152600760205260409020548181101561330f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610eb9565b6001600160a01b038085165f8181526007602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061336e9086815260200190565b60405180910390a361234a565b5f806133a77f000000000000000000000000000000000000000000000000000000000000000084614a6b565b90506001600160401b03811115610cae5760405162461bcd60e51b815260206004820152601d60248201527f524542415345436f72653a20616d6f756e745344206f766572666c6f770000006044820152606401610eb9565b5f61340a836139d3565b61ffff8087165f908152600260209081526040808320938916835292905220549091508061347a5760405162461bcd60e51b815260206004820152601f60248201527f54656d706c65654170703a206d696e4761734c696d6974206e6f7420736574006044820152606401610eb9565b6134848382614666565b821015610f365760405162461bcd60e51b815260206004820181905260248201527f54656d706c65654170703a20676173206c696d697420697320746f6f206c6f776044820152606401610eb9565b5f806134ff7f000000000000000000000000000000000000000000000000000000000000000084614caa565b905061350b8184614769565b9150915091565b5f336001600160a01b038616811461352f5761352f8682856122d8565b6135398684613a38565b5090949350505050565b61ffff86165f908152600160205260408120805461356090614620565b80601f016020809104026020016040519081016040528092919081815260200182805461358c90614620565b80156135d75780601f106135ae576101008083540402835291602001916135d7565b820191905f5260205f20905b8154815290600101906020018083116135ba57829003601f168201915b5050505050905080515f0361364c5760405162461bcd60e51b815260206004820152603560248201527f54656d706c65654170703a2064657374696e6174696f6e20636861696e206973604482015274206e6f742061207472757374656420736f7572636560581b6064820152608401610eb9565b613657878751613b6a565b60405162c5803160e81b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063c58031009084906136ae908b9086908c908c908c908c90600401614cbd565b5f604051808303818588803b1580156136c5575f80fd5b505af11580156136d7573d5f803e3d5ffd5b505050505050505050505050565b6060600185856001600160a01b038916858760405160200161370c96959493929190614d23565b604051602081830303815290604052905095945050505050565b5f60605f805f8661ffff166001600160401b03811115613748576137486140c4565b6040519080825280601f01601f191660200182016040528015613772576020820181803683370190505b5090505f808751602089015f8d8df191503d925086831115613792578692505b828152825f602083013e909890975095505050505050565b818051906020012060055f8761ffff1661ffff1681526020019081526020015f20856040516137d99190614bff565b9081526040805191829003602090810183206001600160401b0388165f908152915220919091557fe183f33de2837795525b4792ca4cd60535bd77c53b7e7030060bfcf5734d6b0c906138359087908790879087908790614d6b565b60405180910390a15050505050565b5f80806138518482612ee6565b60ff16148015613862575082516029145b6138ae5760405162461bcd60e51b815260206004820152601b60248201527f524542415345436f72653a20696e76616c6964207061796c6f616400000000006044820152606401610eb9565b6138b983600d613be8565b91506138c6836021613c4c565b9050915091565b5f610cae7f00000000000000000000000000000000000000000000000000000000000000006001600160401b038416614a40565b5f61390c8383613ca8565b5092915050565b5f808060608160016139258783612ee6565b60ff16146139755760405162461bcd60e51b815260206004820152601b60248201527f524542415345436f72653a20696e76616c6964207061796c6f616400000000006044820152606401610eb9565b61398086600d613be8565b935061398d866021613c4c565b925061399a866029613d67565b94506139a7866049613c4c565b90506139c360518088516139bb9190614769565b889190612ac5565b915091939590929450565b505050565b5f602282511015613a305760405162461bcd60e51b815260206004820152602160248201527f54656d706c65654170703a20696e76616c69642061646170746572506172616d6044820152607360f81b6064820152608401610eb9565b506022015190565b6001600160a01b038216613a985760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610eb9565b6001600160a01b0382165f9081526007602052604090205481811015613b0b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610eb9565b6001600160a01b0383165f8181526007602090815260408083208686039055600980548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b61ffff82165f9081526003602052604081205490819003613b8a57506127105b808211156139ce5760405162461bcd60e51b815260206004820152602560248201527f54656d706c65654170703a207061796c6f61642073697a6520697320746f6f206044820152646c6172676560d81b6064820152608401610eb9565b5f613bf4826014614666565b83511015613c3c5760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b6044820152606401610eb9565b500160200151600160601b900490565b5f613c58826008614666565b83511015613c9f5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b6044820152606401610eb9565b50016008015190565b6001600160a01b038216613cfe5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610eb9565b8060095f828254613d0f9190614666565b90915550506001600160a01b0382165f818152600760209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b5f613d73826020614666565b83511015613dbb5760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b6044820152606401610eb9565b50016020015190565b5f60208284031215613dd4575f80fd5b81356001600160e01b031981168114611663575f80fd5b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f6116636020830184613deb565b803561ffff81168114613e3c575f80fd5b919050565b5f60208284031215613e51575f80fd5b61166382613e2b565b6001600160a01b0381168114611237575f80fd5b5f8060408385031215613e7f575f80fd5b8235613e8a81613e5a565b946020939093013593505050565b5f8060408385031215613ea9575f80fd5b613e8a83613e2b565b5f8083601f840112613ec2575f80fd5b5081356001600160401b03811115613ed8575f80fd5b602083019150836020828501011115613eef575f80fd5b9250929050565b80356001600160401b0381168114613e3c575f80fd5b5f805f805f8060808789031215613f21575f80fd5b613f2a87613e2b565b955060208701356001600160401b0380821115613f45575f80fd5b613f518a838b01613eb2565b9097509550859150613f6560408a01613ef6565b94506060890135915080821115613f7a575f80fd5b50613f8789828a01613eb2565b979a9699509497509295939492505050565b5f805f60608486031215613fab575f80fd5b8335613fb681613e5a565b92506020840135613fc681613e5a565b929592945050506040919091013590565b80358015158114613e3c575f80fd5b5f60208284031215613ff6575f80fd5b61166382613fd7565b5f805f805f8060a08789031215614014575f80fd5b61401d87613e2b565b9550602087013594506040870135935061403960608801613fd7565b925060808701356001600160401b03811115614053575f80fd5b613f8789828a01613eb2565b5f6020828403121561406f575f80fd5b5035919050565b5f805f60408486031215614088575f80fd5b61409184613e2b565b925060208401356001600160401b038111156140ab575f80fd5b6140b786828701613eb2565b9497909650939450505050565b634e487b7160e01b5f52604160045260245ffd5b604051601f8201601f191681016001600160401b0381118282101715614100576141006140c4565b604052919050565b5f6001600160401b03821115614120576141206140c4565b50601f01601f191660200190565b5f805f60608486031215614140575f80fd5b61414984613e2b565b925060208401356001600160401b03811115614163575f80fd5b8401601f81018613614173575f80fd5b803561418661418182614108565b6140d8565b81815287602083850101111561419a575f80fd5b816020840160208301375f602083830101528094505050506141be60408501613ef6565b90509250925092565b5f606082840312156141d7575f80fd5b50919050565b5f805f805f60a086880312156141f1575f80fd5b85356141fc81613e5a565b945061420a60208701613e2b565b9350604086013592506060860135915060808601356001600160401b03811115614232575f80fd5b61423e888289016141c7565b9150509295509295909350565b5f6020828403121561425b575f80fd5b813561166381613e5a565b5f805f805f805f8060e0898b03121561427d575f80fd5b883561428881613e5a565b975061429660208a01613e2b565b9650604089013595506060890135945060808901356001600160401b03808211156142bf575f80fd5b6142cb8c838d01613eb2565b90965094508491506142df60a08c01613ef6565b935060c08b01359150808211156142f4575f80fd5b506143018b828c016141c7565b9150509295985092959890939650565b5f8060408385031215614322575f80fd5b61432b83613e2b565b915061433960208401613e2b565b90509250929050565b5f805f805f805f805f806101008b8d03121561435c575f80fd5b6143658b613e2b565b995060208b01356001600160401b0380821115614380575f80fd5b61438c8e838f01613eb2565b909b5099508991506143a060408e01613ef6565b985060608d0135975060808d013591506143b982613e5a565b90955060a08c0135945060c08c013590808211156143d5575f80fd5b506143e28d828e01613eb2565b9150809450508092505060e08b013590509295989b9194979a5092959850565b5f805f805f805f805f60e08a8c03121561441a575f80fd5b6144238a613e2b565b985060208a0135975060408a0135965060608a01356001600160401b038082111561444c575f80fd5b6144588d838e01613eb2565b909850965086915061446c60808d01613ef6565b955061447a60a08d01613fd7565b945060c08c013591508082111561448f575f80fd5b5061449c8c828d01613eb2565b915080935050809150509295985092959850929598565b5f80604083850312156144c4575f80fd5b82356144cf81613e5a565b915061433960208401613fd7565b5f805f805f608086880312156144f1575f80fd5b6144fa86613e2b565b945061450860208701613e2b565b93506040860135925060608601356001600160401b03811115614529575f80fd5b61453588828901613eb2565b969995985093965092949392505050565b5f8060408385031215614557575f80fd5b823561456281613e5a565b9150602083013561457281613e5a565b809150509250929050565b5f805f6060848603121561458f575f80fd5b61459884613e2b565b92506145a660208501613e2b565b9150604084013590509250925092565b5f80604083850312156145c7575f80fd5b50508035926020909101359150565b5f805f80608085870312156145e9575f80fd5b6145f285613e2b565b935061460060208601613e2b565b9250604085013561461081613e5a565b9396929550929360600135925050565b600181811c9082168061463457607f821691505b6020821081036141d757634e487b7160e01b5f52602260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b80820180821115610cae57610cae614652565b818382375f9101908152919050565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b61ffff84168152604060208201525f6120ce604083018486614688565b5f808335601e198436030181126146e2575f80fd5b8301803591506001600160401b038211156146fb575f80fd5b602001915036819003821315613eef575f80fd5b61ffff8916815260c060208201525f61472c60c08301898b614688565b6001600160401b038816604084015286606084015285608084015282810360a084015261475a818587614688565b9b9a5050505050505050505050565b81810381811115610cae57610cae614652565b8284823760609190911b6bffffffffffffffffffffffff19169101908152601401919050565b601f8211156139ce57805f5260205f20601f840160051c810160208510156147c75750805b601f840160051c820191505b81811015610dc1575f81556001016147d3565b81516001600160401b038111156147ff576147ff6140c4565b6148138161480d8454614620565b846147a2565b602080601f831160018114614846575f841561482f5750858301515b5f19600386901b1c1916600185901b178555610f36565b5f85815260208120601f198616915b8281101561487457888601518255948401946001909101908401614855565b508582101561489157878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f61ffff8088168352808716602084015250846040830152608060608301526148ce608083018486614688565b979650505050505050565b61ffff86168152608060208201525f6148f6608083018688614688565b6001600160401b0394909416604083015250606001529392505050565b6001600160401b0383111561492a5761492a6140c4565b61493e836149388354614620565b836147a2565b5f601f84116001811461496f575f85156149585750838201355b5f19600387901b1c1916600186901b178355610dc1565b5f83815260208120601f198716915b8281101561499e578685013582556020948501946001909201910161497e565b50868210156149ba575f1960f88860031b161c19848701351681555b505060018560011b0183555050505050565b5f602082840312156149dc575f80fd5b81516001600160401b038111156149f1575f80fd5b8201601f81018413614a01575f80fd5b8051614a0f61418182614108565b818152856020838501011115614a23575f80fd5b8160208401602083015e5f91810160200191909152949350505050565b8082028115828204841417610cae57610cae614652565b634e487b7160e01b5f52601260045260245ffd5b5f82614a7957614a79614a57565b500490565b5f60018201614a8f57614a8f614652565b5060010190565b61ffff861681526001600160a01b038516602082015260a0604082018190525f90614ac390830186613deb565b84151560608401528281036080840152614add8185613deb565b98975050505050505050565b5f8060408385031215614afa575f80fd5b505080516020909101519092909150565b61ffff85168152608060208201525f614b276080830186613deb565b6001600160401b038516604084015282810360608401526148ce8185613deb565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215614b6c575f80fd5b815161166381613e5a565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015614bc75784516001600160a01b031683529383019391830191600101614ba2565b50506001600160a01b03969096166060850152505050608001529392505050565b5f81518060208401855e5f93019283525090919050565b5f6116638284614be8565b5f61010061ffff8b168352806020840152614c278184018b613deb565b6001600160401b038a166040850152606084018990526001600160a01b038816608085015260a0840187905283810360c08501529050614c678186613deb565b9150508260e08301529998505050505050505050565b606081525f614c8f6060830186613deb565b6001600160401b039490941660208301525060400152919050565b5f82614cb857614cb8614a57565b500690565b61ffff8716815260c060208201525f614cd960c0830188613deb565b8281036040840152614ceb8188613deb565b6001600160a01b0387811660608601528616608085015283810360a08501529050614d168185613deb565b9998505050505050505050565b60ff60f81b8760f81b1681528560018201525f6001600160401b0360c01b808760c01b166021840152856029840152808560c01b16604984015250614add6051830184614be8565b61ffff8616815260a060208201525f614d8760a0830187613deb565b6001600160401b03861660408401528281036060840152614da88186613deb565b90508281036080840152614add8185613deb56fea26469706673582212205d2202a6900f68c26eea03f1911e187f1b0128136df1580ac316fdb31055bb8e64736f6c63430008190033
Deployed Bytecode
0x6080604052600436106103d4575f3560e01c80638da5cb5b116101ff578063bccb468711610113578063df2a5b3b116100a8578063e9451f5f11610078578063e9451f5f14610bfa578063eb8d72b714610c0f578063f2fde38b14610c2e578063f5ecbdbc14610c4d578063fc0c546a14610c6c575f80fd5b8063df2a5b3b14610b7a578063df47e37314610b99578063e0bf7fd114610bb8578063e6a20ae614610be6575f80fd5b8063c4461834116100e3578063c446183414610b14578063cbed8b9c14610b29578063d1deba1f14610b48578063dd62ed3e14610b5b575f80fd5b8063bccb468714610aad578063be9a655514610ac2578063c024666814610ad6578063c18bc19514610af5575f80fd5b8063a4c51df511610194578063ad939c6611610164578063ad939c66146109fe578063b256f7b714610a1d578063b353aaa714610a3c578063b70143c914610a6f578063baf3292d14610a8e575f80fd5b8063a4c51df514610982578063a6c3d165146109a1578063a6fb5dfd146109c0578063a9059cbb146109df575f80fd5b80639a2095a5116101cf5780639a2095a5146108d55780639bdb9812146108f45780639f38369a14610944578063a457c2d714610963575f80fd5b80638da5cb5b146108725780639358928b1461088e578063950c8a74146108a257806395d89b41146108c1575f80fd5b80633d8b38f6116102f65780635b8c41e61161028b578063715018a61161025b578063715018a6146107c35780637533d788146107d757806376203b48146107f6578063857749b0146108095780638cfd8f5c1461083c575f80fd5b80635b8c41e6146107105780636256d1811461075d578063695ef6bf1461077c57806370a082311461078f575f80fd5b806349bd5a5e116102c657806349bd5a5e1461068a5780634c42899a146106bd5780634ebc552d146106d057806353371be0146106ef575f80fd5b80633d8b38f61461060e5780633f1f4fa41461062d57806342d65a8d146106585780634477051514610677575f80fd5b8063231101ea1161036c578063313ce5671161033c578063313ce5671461057b578063365260b41461059c57806339509351146105d05780633d5369f6146105ef575f80fd5b8063231101ea146104de57806323b872dd146104fd5780632dc0562d1461051c578063302757441461055c575f80fd5b80630df37483116103a75780630df374831461046d57806310ddb1371461048c57806318160ddd146104ab5780631dc36945146104c9575f80fd5b806301ffc9a7146103d857806306fdde031461040c57806307e0db171461042d578063095ea7b31461044e575b5f80fd5b3480156103e3575f80fd5b506103f76103f2366004613dc4565b610c7e565b60405190151581526020015b60405180910390f35b348015610417575f80fd5b50610420610cb4565b6040516104039190613e19565b348015610438575f80fd5b5061044c610447366004613e41565b610d44565b005b348015610459575f80fd5b506103f7610468366004613e6e565b610dc8565b348015610478575f80fd5b5061044c610487366004613e98565b610ddf565b348015610497575f80fd5b5061044c6104a6366004613e41565b610dfd565b3480156104b6575f80fd5b506009545b604051908152602001610403565b3480156104d4575f80fd5b506104bb600d5481565b3480156104e9575f80fd5b5061044c6104f8366004613f0c565b610e55565b348015610508575f80fd5b506103f7610517366004613f99565b610f3e565b348015610527575f80fd5b50601454610544906501000000000090046001600160a01b031681565b6040516001600160a01b039091168152602001610403565b348015610567575f80fd5b5061044c610576366004613fe6565b610f61565b348015610586575f80fd5b5060125b60405160ff9091168152602001610403565b3480156105a7575f80fd5b506105bb6105b6366004613fff565b610f83565b60408051928352602083019190915201610403565b3480156105db575f80fd5b506103f76105ea366004613e6e565b610fd6565b3480156105fa575f80fd5b5061044c61060936600461405f565b610ff7565b348015610619575f80fd5b506103f7610628366004614076565b611048565b348015610638575f80fd5b506104bb610647366004613e41565b60036020525f908152604090205481565b348015610663575f80fd5b5061044c610672366004614076565b611111565b348015610682575f80fd5b506104bb5f81565b348015610695575f80fd5b506105447f000000000000000000000000685575ccaa1c6e2f37052d63606f5699a5df289081565b3480156106c8575f80fd5b5061058a5f81565b3480156106db575f80fd5b5061044c6106ea36600461405f565b61119b565b3480156106fa575f80fd5b506014546103f790640100000000900460ff1681565b34801561071b575f80fd5b506104bb61072a36600461412e565b600560209081525f9384526040808520845180860184018051928152908401958401959095209452929052825290205481565b348015610768575f80fd5b5061044c61077736600461405f565b61123a565b61044c61078a3660046141dd565b611247565b34801561079a575f80fd5b506104bb6107a936600461424b565b6001600160a01b03165f9081526007602052604090205490565b3480156107ce575f80fd5b5061044c6112b1565b3480156107e2575f80fd5b506104206107f1366004613e41565b6112c4565b61044c610804366004614266565b61135b565b348015610814575f80fd5b5061058a7f000000000000000000000000000000000000000000000000000000000000000881565b348015610847575f80fd5b506104bb610856366004614311565b600260209081525f928352604080842090915290825290205481565b34801561087d575f80fd5b505f546001600160a01b0316610544565b348015610899575f80fd5b506104bb611408565b3480156108ad575f80fd5b50600454610544906001600160a01b031681565b3480156108cc575f80fd5b50610420611417565b3480156108e0575f80fd5b5061044c6108ef366004614342565b611426565b3480156108ff575f80fd5b506103f761090e36600461412e565b600660209081525f9384526040808520845180860184018051928152908401958401959095209452929052825290205460ff1681565b34801561094f575f80fd5b5061042061095e366004613e41565b61154e565b34801561096e575f80fd5b506103f761097d366004613e6e565b61166a565b34801561098d575f80fd5b506105bb61099c366004614402565b6116e4565b3480156109ac575f80fd5b5061044c6109bb366004614076565b611770565b3480156109cb575f80fd5b5061044c6109da36600461424b565b6117f8565b3480156109ea575f80fd5b506103f76109f9366004613e6e565b611830565b348015610a09575f80fd5b5061044c610a18366004613f0c565b61183d565b348015610a28575f80fd5b5061044c610a37366004613fe6565b611a6b565b348015610a47575f80fd5b506105447f000000000000000000000000b2d7204211d47ad9374192f05cba931ba94e28ce81565b348015610a7a575f80fd5b5061044c610a8936600461405f565b611a8f565b348015610a99575f80fd5b5061044c610aa836600461424b565b611aa0565b348015610ab8575f80fd5b506104bb60125481565b348015610acd575f80fd5b5061044c611afc565b348015610ae1575f80fd5b5061044c610af03660046144b3565b611b6f565b348015610b00575f80fd5b5061044c610b0f36600461405f565b611ba1565b348015610b1f575f80fd5b506104bb61271081565b348015610b34575f80fd5b5061044c610b433660046144dd565b611bae565b61044c610b56366004613f0c565b611c33565b348015610b66575f80fd5b506104bb610b75366004614546565b611e4d565b348015610b85575f80fd5b5061044c610b9436600461457d565b611e77565b348015610ba4575f80fd5b5061044c610bb33660046145b6565b611ee0565b348015610bc3575f80fd5b506103f7610bd236600461424b565b60156020525f908152604090205460ff1681565b348015610bf1575f80fd5b5061058a600181565b348015610c05575f80fd5b506104bb600e5481565b348015610c1a575f80fd5b5061044c610c29366004614076565b611f5b565b348015610c39575f80fd5b5061044c610c4836600461424b565b611fb4565b348015610c58575f80fd5b50610420610c673660046145d6565b61202a565b348015610c77575f80fd5b5030610544565b5f6001600160e01b03198216631f7ecdf760e01b1480610cae57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600a8054610cc390614620565b80601f0160208091040260200160405190810160405280929190818152602001828054610cef90614620565b8015610d3a5780601f10610d1157610100808354040283529160200191610d3a565b820191905f5260205f20905b815481529060010190602001808311610d1d57829003601f168201915b5050505050905090565b610d4c6120d7565b6040516307e0db1760e01b815261ffff821660048201527f000000000000000000000000b2d7204211d47ad9374192f05cba931ba94e28ce6001600160a01b0316906307e0db17906024015b5f604051808303815f87803b158015610daf575f80fd5b505af1158015610dc1573d5f803e3d5ffd5b5050505050565b5f33610dd5818585612130565b5060019392505050565b610de76120d7565b61ffff9091165f90815260036020526040902055565b610e056120d7565b6040516310ddb13760e01b815261ffff821660048201527f000000000000000000000000b2d7204211d47ad9374192f05cba931ba94e28ce6001600160a01b0316906310ddb13790602401610d98565b333014610ec25760405162461bcd60e51b815260206004820152603060248201527f4e6f6e626c6f636b696e6754656d706c65654170703a2063616c6c6572206d7560448201526f073742062652054656d706c65654170760841b60648201526084015b60405180910390fd5b610f368686868080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050604080516020601f8901819004810282018101909252878152899350915087908790819084018382808284375f9201919091525061225392505050565b505050505050565b5f33610f4b8582856122d8565b610f56858585612350565b506001949350505050565b610f696120d7565b601480549115156101000261ff0019909216919091179055565b5f80610fc78888888888888080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525061275092505050565b91509150965096945050505050565b5f33610dd5818585610fe88383611e4d565b610ff29190614666565b612130565b610fff6120d7565b5f81116110435760405162461bcd60e51b815260206004820152601260248201527143616e6e6f742073657420746f207a65726f60701b6044820152606401610eb9565b600f55565b61ffff83165f908152600160205260408120805482919061106890614620565b80601f016020809104026020016040519081016040528092919081815260200182805461109490614620565b80156110df5780601f106110b6576101008083540402835291602001916110df565b820191905f5260205f20905b8154815290600101906020018083116110c257829003601f168201915b5050505050905083836040516110f6929190614679565b60405180910390208180519060200120149150509392505050565b6111196120d7565b6040516342d65a8d60e01b81526001600160a01b037f000000000000000000000000b2d7204211d47ad9374192f05cba931ba94e28ce16906342d65a8d90611169908690869086906004016146b0565b5f604051808303815f87803b158015611180575f80fd5b505af1158015611192573d5f803e3d5ffd5b50505050505050565b80601154036111b1576028600d819055600e5550565b8060115460016111c19190614666565b106111d3576023600d819055600e5550565b8060115460056111e39190614666565b106111f557601e600d819055600e5550565b80601154600b6112059190614666565b10611217576019600d819055600e5550565b8060115460186112279190614666565b10611237576014600d819055600e555b50565b6112426120d7565b600c55565b610f368585858561125b602087018761424b565b61126b604088016020890161424b565b61127860408901896146cd565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525061283f92505050565b6112b96120d7565b6112c25f612928565b565b60016020525f9081526040902080546112dc90614620565b80601f016020809104026020016040519081016040528092919081815260200182805461130890614620565b80156113535780601f1061132a57610100808354040283529160200191611353565b820191905f5260205f20905b81548152906001019060200180831161133657829003601f168201915b505050505081565b6113fd8888888888888080601f0160208091040260200160405190810160405280939291908181526020018383808284375f920191909152508a92506113a7915050602089018961424b565b6113b760408a0160208b0161424b565b6113c460408b018b6146cd565b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525061297792505050565b505050505050505050565b5f61141260095490565b905090565b6060600b8054610cc390614620565b3330146114835760405162461bcd60e51b815260206004820152602560248201527f524542415345436f72653a2063616c6c6572206d75737420626520524542415360448201526445436f726560d81b6064820152608401610eb9565b61148e308686612a74565b9350846001600160a01b03168a61ffff167fbf551ec93859b170f9b2141bd9298bf3f64322c6f7beb2543a0cb669834118bf866040516114d091815260200190565b60405180910390a3604051631d9f3d3160e11b81526001600160a01b03861690633b3e7a62908390611514908e908e908e908e908e908d908d908d9060040161470f565b5f604051808303815f88803b15801561152b575f80fd5b5087f115801561153d573d5f803e3d5ffd5b505050505050505050505050505050565b61ffff81165f9081526001602052604081208054606092919061157090614620565b80601f016020809104026020016040519081016040528092919081815260200182805461159c90614620565b80156115e75780601f106115be576101008083540402835291602001916115e7565b820191905f5260205f20905b8154815290600101906020018083116115ca57829003601f168201915b5050505050905080515f036116495760405162461bcd60e51b815260206004820152602260248201527f54656d706c65654170703a206e6f20747275737465642070617468207265636f6044820152611c9960f21b6064820152608401610eb9565b6116635f6014835161165b9190614769565b839190612ac5565b9392505050565b5f33816116778286611e4d565b9050838110156116d75760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610eb9565b610f568286868403612130565b5f8061175e8b8b8b8b8b8080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050604080516020601f8d018190048102820181019092528b81528e93508d9250908c908c90819084018382808284375f92019190915250612bd192505050565b91509150995099975050505050505050565b6117786120d7565b81813060405160200161178d9392919061477c565b60408051601f1981840301815291815261ffff85165f908152600160205220906117b790826147e6565b507f8c0400cfe2d1199b1a725c78960bcc2a344d869b80590d0f2bd005db15a572ce8383836040516117eb939291906146b0565b60405180910390a1505050565b6118006120d7565b601480546001600160a01b03909216650100000000000265010000000000600160c81b0319909216919091179055565b5f33610dd5818585612350565b337f000000000000000000000000b2d7204211d47ad9374192f05cba931ba94e28ce6001600160a01b0316146118c15760405162461bcd60e51b815260206004820152602360248201527f54656d706c65654170703a20696e76616c696420656e64706f696e742063616c6044820152623632b960e91b6064820152608401610eb9565b61ffff86165f90815260016020526040812080546118de90614620565b80601f016020809104026020016040519081016040528092919081815260200182805461190a90614620565b80156119555780601f1061192c57610100808354040283529160200191611955565b820191905f5260205f20905b81548152906001019060200180831161193857829003601f168201915b5050505050905080518686905014801561196f57505f8151115b801561199757508051602082012060405161198d9088908890614679565b6040518091039020145b6119f75760405162461bcd60e51b815260206004820152602b60248201527f54656d706c65654170703a20696e76616c696420736f757263652073656e646960448201526a1b99c818dbdb9d1c9858dd60aa1b6064820152608401610eb9565b6111928787878080601f0160208091040260200160405190810160405280939291908181526020018383808284375f9201919091525050604080516020601f8a018190048102820181019092528881528a9350915088908890819084018382808284375f92019190915250612c8892505050565b611a736120d7565b60148054911515620100000262ff000019909216919091179055565b611a976120d7565b61123781612d00565b611aa86120d7565b600480546001600160a01b0319166001600160a01b0383169081179091556040519081527f5db758e995a17ec1ad84bdef7e8c3293a0bd6179bcce400dff5d4c3d87db726b9060200160405180910390a150565b611b046120d7565b601454640100000000900460ff1615611b545760405162461bcd60e51b8152602060048201526012602482015271151c98591a5b99c81b9bdd081c185d5cd95960721b6044820152606401610eb9565b601480544360115564ff000000ff1916640100000001179055565b611b776120d7565b6001600160a01b03919091165f908152601560205260409020805460ff1916911515919091179055565b611ba96120d7565b601055565b611bb66120d7565b6040516332fb62e760e21b81526001600160a01b037f000000000000000000000000b2d7204211d47ad9374192f05cba931ba94e28ce169063cbed8b9c90611c0a90889088908890889088906004016148a1565b5f604051808303815f87803b158015611c21575f80fd5b505af11580156113fd573d5f803e3d5ffd5b61ffff86165f908152600560205260408082209051611c559088908890614679565b90815260408051602092819003830190206001600160401b0387165f9081529252902054905080611cd95760405162461bcd60e51b815260206004820152602860248201527f4e6f6e626c6f636b696e6754656d706c65654170703a206e6f2073746f726564604482015267206d65737361676560c01b6064820152608401610eb9565b808383604051611cea929190614679565b604051809103902014611d4e5760405162461bcd60e51b815260206004820152602660248201527f4e6f6e626c6f636b696e6754656d706c65654170703a20696e76616c69642070604482015265185e5b1bd85960d21b6064820152608401610eb9565b61ffff87165f908152600560205260408082209051611d709089908990614679565b90815260408051602092819003830181206001600160401b0389165f90815290845282902093909355601f88018290048202830182019052868252611e0591899189908990819084018382808284375f9201919091525050604080516020601f8a018190048102820181019092528881528a9350915088908890819084018382808284375f9201919091525061225392505050565b7fc264d91f3adc5588250e1551f547752ca0cfa8f6b530d243b9f9f4cab10ea8e58787878785604051611e3c9594939291906148d9565b60405180910390a150505050505050565b6001600160a01b039182165f90815260086020908152604080832093909416825291909152205490565b611e7f6120d7565b61ffff8381165f8181526002602090815260408083209487168084529482529182902085905581519283528201929092529081018290527f9d5c7c0b934da8fefa9c7760c98383778a12dfbfc0c3b3106518f43fb9508ac0906060016117eb565b611ee86120d7565b600a8211158015611efa5750600a8111155b611f465760405162461bcd60e51b815260206004820152601960248201527f43616e6e6f74207365742074617865732061626f7665203130000000000000006044820152606401610eb9565b600d91909155600e556014805460ff19169055565b611f636120d7565b61ffff83165f908152600160205260409020611f80828483614913565b507ffa41487ad5d6728f0b19276fa1eddc16558578f5109fc39d2dc33c3230470dab8383836040516117eb939291906146b0565b611fbc6120d7565b6001600160a01b0381166120215760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610eb9565b61123781612928565b604051633d7b2f6f60e21b815261ffff808616600483015284166024820152306044820152606481018290526060907f000000000000000000000000b2d7204211d47ad9374192f05cba931ba94e28ce6001600160a01b03169063f5ecbdbc906084015f60405180830381865afa1580156120a7573d5f803e3d5ffd5b505050506040513d5f823e601f3d908101601f191682016040526120ce91908101906149cc565b95945050505050565b5f546001600160a01b031633146112c25760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610eb9565b6001600160a01b0383166121925760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610eb9565b6001600160a01b0382166121f35760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610eb9565b6001600160a01b038381165f8181526008602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f61225e8282612ee6565b905060ff81166122795761227485858585612f41565b610dc1565b5f1960ff8216016122905761227485858585612fcf565b60405162461bcd60e51b815260206004820152601f60248201527f524542415345436f72653a20756e6b6e6f776e207061636b65742074797065006044820152606401610eb9565b5f6122e38484611e4d565b90505f19811461234a578181101561233d5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610eb9565b61234a8484848403612130565b50505050565b5f81116123ae5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e73666572206d75737420626520677265617465722060448201526507468616e20360d41b6064820152608401610eb9565b601454640100000000900460ff1661242c575f546001600160a01b03848116911614806123e757505f546001600160a01b038381169116145b61242c5760405162461bcd60e51b8152602060048201526016602482015275151c98591a5b99c81b9bdd081858dd1a5d99481e595d60521b6044820152606401610eb9565b6014545f9060ff1615612442576124424361119b565b7f000000000000000000000000685575ccaa1c6e2f37052d63606f5699a5df28906001600160a01b0316846001600160a01b031614801561249b57506001600160a01b0383165f9081526015602052604090205460ff16155b1561259857601054826124c2856001600160a01b03165f9081526007602052604090205490565b6124cc9190614666565b11156125115760405162461bcd60e51b815260206004820152601460248201527313585e0815d85b1b195d08125b881159999958dd60621b6044820152606401610eb9565b600c548211156125565760405162461bcd60e51b815260206004820152601060248201526f13585e08151e081a5b881959999958dd60821b6044820152606401610eb9565b601454610100900460ff1615612583576064600d54836125769190614a40565b6125809190614a6b565b90505b60128054905f61259283614a7e565b91905055505b7f000000000000000000000000685575ccaa1c6e2f37052d63606f5699a5df28906001600160a01b0316836001600160a01b03161480156125f157506001600160a01b0384165f9081526015602052604090205460ff16155b1561266857600c5482111561263b5760405162461bcd60e51b815260206004820152601060248201526f13585e08151e081a5b881959999958dd60821b6044820152606401610eb9565b601454610100900460ff1615612668576064600e548361265b9190614a40565b6126659190614a6b565b90505b305f90815260076020526040902054600f548110801590819061269557506014546301000000900460ff16155b80156126d357507f000000000000000000000000685575ccaa1c6e2f37052d63606f5699a5df28906001600160a01b0316866001600160a01b031614155b80156126f757506001600160a01b0386165f9081526015602052604090205460ff16155b80156127065750601354601254115b1561271657612716600f54612d00565b8215612745575f6127278486614769565b90506127348730866131d2565b61273f8787836131d2565b50610f36565b610f368686866131d2565b5f805f61279b876127608861337b565b604080515f6020820152602181019390935260c09190911b6001600160c01b0319166041830152805160298184030181526049909201905290565b60405163040a7bb160e41b81529091506001600160a01b037f000000000000000000000000b2d7204211d47ad9374192f05cba931ba94e28ce16906340a7bb10906127f2908b90309086908b908b90600401614a96565b6040805180830381865afa15801561280c573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906128309190614ae9565b92509250509550959350505050565b5f61284c87828481613400565b612855856134d3565b50905061286488888884613512565b90505f81116128b55760405162461bcd60e51b815260206004820152601c60248201527f524542415345436f72653a20616d6f756e7420746f6f20736d616c6c000000006044820152606401610eb9565b5f6128c3876127608461337b565b90506128d3888287878734613543565b86896001600160a01b03168961ffff167fd81fc9b8523134ed613870ed029d6170cbb73aa6a6bc311b9a642689fb9df59a8560405161291491815260200190565b60405180910390a450979650505050505050565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f61298e896001846001600160401b038916613400565b612997876134d3565b5090506129a68a8a8a84613512565b90505f81116129f75760405162461bcd60e51b815260206004820152601c60248201527f524542415345436f72653a20616d6f756e7420746f6f20736d616c6c000000006044820152606401610eb9565b5f612a0d338a612a068561337b565b8a8a6136e5565b9050612a1d8a8287878734613543565b888b6001600160a01b03168b61ffff167fd81fc9b8523134ed613870ed029d6170cbb73aa6a6bc311b9a642689fb9df59a85604051612a5e91815260200190565b60405180910390a4509998505050505050505050565b5f33306001600160a01b03861614801590612aa15750806001600160a01b0316856001600160a01b031614155b15612ab157612ab18582856122d8565b612abc858585612350565b50909392505050565b606081612ad381601f614666565b1015612b125760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b6044820152606401610eb9565b612b1c8284614666565b84511015612b605760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b6044820152606401610eb9565b606082158015612b7e5760405191505f825260208201604052612bc8565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015612bb7578051835260209283019201612b9f565b5050858452601f01601f1916604052505b50949350505050565b5f805f612be2338a612a068b61337b565b60405163040a7bb160e41b81529091506001600160a01b037f000000000000000000000000b2d7204211d47ad9374192f05cba931ba94e28ce16906340a7bb1090612c39908d90309086908b908b90600401614a96565b6040805180830381865afa158015612c53573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612c779190614ae9565b925092505097509795505050505050565b5f80612cea5a609663231101ea60e01b89898989604051602401612caf9493929190614b0b565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915230929190613726565b9150915081610f3657610f3686868686856137aa565b6014805463ff000000191663010000001790556040805160028082526060820183525f9260208301908036833701905050905030815f81518110612d4657612d46614b48565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612dc2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612de69190614b5c565b81600181518110612df957612df9614b48565b60200260200101906001600160a01b031690816001600160a01b031681525050612e44307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612130565b60145460405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81169263791ac94792612ea89287925f92889265010000000000909204909116904290600401614b77565b5f604051808303815f87803b158015612ebf575f80fd5b505af1158015612ed1573d5f803e3d5ffd5b50506014805463ff0000001916905550505050565b5f612ef2826001614666565b83511015612f385760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b6044820152606401610eb9565b50016001015190565b5f80612f4c83613844565b90925090506001600160a01b038216612f655761dead91505b5f612f6f826138cd565b9050612f7c878483613901565b9050826001600160a01b03168761ffff167fbf551ec93859b170f9b2141bd9298bf3f64322c6f7beb2543a0cb669834118bf83604051612fbe91815260200190565b60405180910390a350505050505050565b5f805f805f612fdd86613913565b945094509450945094505f60065f8b61ffff1661ffff1681526020019081526020015f208960405161300f9190614bff565b90815260408051602092819003830190206001600160401b038b165f908152925281205460ff169150613041856138cd565b9050816130ad576130538b3083613901565b61ffff8c165f9081526006602052604090819020905191925060019161307a908d90614bff565b90815260408051602092819003830190206001600160401b038d165f90815292529020805460ff19169115159190911790555b6001600160a01b0386163b613104576040516001600160a01b03871681527f9aedf5fdba8716db3b6705ca00150643309995d4f818a249ed6dde6677e7792d9060200160405180910390a15050505050505061234a565b8a8a8a8a8a8a868a5f8a613121578b6001600160401b0316613123565b5a5b90505f806131545a6096639a2095a560e01b8e8e8e8d8d8d8d8d604051602401612caf989796959493929190614c0a565b9150915081156131ad578751602089012060405161ffff8d16907f6d76c6b2837f234f610c722403fa5f92d7d05f167f2918924b59b8e34f3a43bf9061319f908e908e908690614c7d565b60405180910390a2506131ba565b6131ba8b8b8b8b856137aa565b50505050505050505050505050505050505050505050565b6001600160a01b0383166132365760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610eb9565b6001600160a01b0382166132985760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610eb9565b6001600160a01b0383165f908152600760205260409020548181101561330f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610eb9565b6001600160a01b038085165f8181526007602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061336e9086815260200190565b60405180910390a361234a565b5f806133a77f00000000000000000000000000000000000000000000000000000002540be40084614a6b565b90506001600160401b03811115610cae5760405162461bcd60e51b815260206004820152601d60248201527f524542415345436f72653a20616d6f756e745344206f766572666c6f770000006044820152606401610eb9565b5f61340a836139d3565b61ffff8087165f908152600260209081526040808320938916835292905220549091508061347a5760405162461bcd60e51b815260206004820152601f60248201527f54656d706c65654170703a206d696e4761734c696d6974206e6f7420736574006044820152606401610eb9565b6134848382614666565b821015610f365760405162461bcd60e51b815260206004820181905260248201527f54656d706c65654170703a20676173206c696d697420697320746f6f206c6f776044820152606401610eb9565b5f806134ff7f00000000000000000000000000000000000000000000000000000002540be40084614caa565b905061350b8184614769565b9150915091565b5f336001600160a01b038616811461352f5761352f8682856122d8565b6135398684613a38565b5090949350505050565b61ffff86165f908152600160205260408120805461356090614620565b80601f016020809104026020016040519081016040528092919081815260200182805461358c90614620565b80156135d75780601f106135ae576101008083540402835291602001916135d7565b820191905f5260205f20905b8154815290600101906020018083116135ba57829003601f168201915b5050505050905080515f0361364c5760405162461bcd60e51b815260206004820152603560248201527f54656d706c65654170703a2064657374696e6174696f6e20636861696e206973604482015274206e6f742061207472757374656420736f7572636560581b6064820152608401610eb9565b613657878751613b6a565b60405162c5803160e81b81526001600160a01b037f000000000000000000000000b2d7204211d47ad9374192f05cba931ba94e28ce169063c58031009084906136ae908b9086908c908c908c908c90600401614cbd565b5f604051808303818588803b1580156136c5575f80fd5b505af11580156136d7573d5f803e3d5ffd5b505050505050505050505050565b6060600185856001600160a01b038916858760405160200161370c96959493929190614d23565b604051602081830303815290604052905095945050505050565b5f60605f805f8661ffff166001600160401b03811115613748576137486140c4565b6040519080825280601f01601f191660200182016040528015613772576020820181803683370190505b5090505f808751602089015f8d8df191503d925086831115613792578692505b828152825f602083013e909890975095505050505050565b818051906020012060055f8761ffff1661ffff1681526020019081526020015f20856040516137d99190614bff565b9081526040805191829003602090810183206001600160401b0388165f908152915220919091557fe183f33de2837795525b4792ca4cd60535bd77c53b7e7030060bfcf5734d6b0c906138359087908790879087908790614d6b565b60405180910390a15050505050565b5f80806138518482612ee6565b60ff16148015613862575082516029145b6138ae5760405162461bcd60e51b815260206004820152601b60248201527f524542415345436f72653a20696e76616c6964207061796c6f616400000000006044820152606401610eb9565b6138b983600d613be8565b91506138c6836021613c4c565b9050915091565b5f610cae7f00000000000000000000000000000000000000000000000000000002540be4006001600160401b038416614a40565b5f61390c8383613ca8565b5092915050565b5f808060608160016139258783612ee6565b60ff16146139755760405162461bcd60e51b815260206004820152601b60248201527f524542415345436f72653a20696e76616c6964207061796c6f616400000000006044820152606401610eb9565b61398086600d613be8565b935061398d866021613c4c565b925061399a866029613d67565b94506139a7866049613c4c565b90506139c360518088516139bb9190614769565b889190612ac5565b915091939590929450565b505050565b5f602282511015613a305760405162461bcd60e51b815260206004820152602160248201527f54656d706c65654170703a20696e76616c69642061646170746572506172616d6044820152607360f81b6064820152608401610eb9565b506022015190565b6001600160a01b038216613a985760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610eb9565b6001600160a01b0382165f9081526007602052604090205481811015613b0b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610eb9565b6001600160a01b0383165f8181526007602090815260408083208686039055600980548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b61ffff82165f9081526003602052604081205490819003613b8a57506127105b808211156139ce5760405162461bcd60e51b815260206004820152602560248201527f54656d706c65654170703a207061796c6f61642073697a6520697320746f6f206044820152646c6172676560d81b6064820152608401610eb9565b5f613bf4826014614666565b83511015613c3c5760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b6044820152606401610eb9565b500160200151600160601b900490565b5f613c58826008614666565b83511015613c9f5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b6044820152606401610eb9565b50016008015190565b6001600160a01b038216613cfe5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610eb9565b8060095f828254613d0f9190614666565b90915550506001600160a01b0382165f818152600760209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b5f613d73826020614666565b83511015613dbb5760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b6044820152606401610eb9565b50016020015190565b5f60208284031215613dd4575f80fd5b81356001600160e01b031981168114611663575f80fd5b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f6116636020830184613deb565b803561ffff81168114613e3c575f80fd5b919050565b5f60208284031215613e51575f80fd5b61166382613e2b565b6001600160a01b0381168114611237575f80fd5b5f8060408385031215613e7f575f80fd5b8235613e8a81613e5a565b946020939093013593505050565b5f8060408385031215613ea9575f80fd5b613e8a83613e2b565b5f8083601f840112613ec2575f80fd5b5081356001600160401b03811115613ed8575f80fd5b602083019150836020828501011115613eef575f80fd5b9250929050565b80356001600160401b0381168114613e3c575f80fd5b5f805f805f8060808789031215613f21575f80fd5b613f2a87613e2b565b955060208701356001600160401b0380821115613f45575f80fd5b613f518a838b01613eb2565b9097509550859150613f6560408a01613ef6565b94506060890135915080821115613f7a575f80fd5b50613f8789828a01613eb2565b979a9699509497509295939492505050565b5f805f60608486031215613fab575f80fd5b8335613fb681613e5a565b92506020840135613fc681613e5a565b929592945050506040919091013590565b80358015158114613e3c575f80fd5b5f60208284031215613ff6575f80fd5b61166382613fd7565b5f805f805f8060a08789031215614014575f80fd5b61401d87613e2b565b9550602087013594506040870135935061403960608801613fd7565b925060808701356001600160401b03811115614053575f80fd5b613f8789828a01613eb2565b5f6020828403121561406f575f80fd5b5035919050565b5f805f60408486031215614088575f80fd5b61409184613e2b565b925060208401356001600160401b038111156140ab575f80fd5b6140b786828701613eb2565b9497909650939450505050565b634e487b7160e01b5f52604160045260245ffd5b604051601f8201601f191681016001600160401b0381118282101715614100576141006140c4565b604052919050565b5f6001600160401b03821115614120576141206140c4565b50601f01601f191660200190565b5f805f60608486031215614140575f80fd5b61414984613e2b565b925060208401356001600160401b03811115614163575f80fd5b8401601f81018613614173575f80fd5b803561418661418182614108565b6140d8565b81815287602083850101111561419a575f80fd5b816020840160208301375f602083830101528094505050506141be60408501613ef6565b90509250925092565b5f606082840312156141d7575f80fd5b50919050565b5f805f805f60a086880312156141f1575f80fd5b85356141fc81613e5a565b945061420a60208701613e2b565b9350604086013592506060860135915060808601356001600160401b03811115614232575f80fd5b61423e888289016141c7565b9150509295509295909350565b5f6020828403121561425b575f80fd5b813561166381613e5a565b5f805f805f805f8060e0898b03121561427d575f80fd5b883561428881613e5a565b975061429660208a01613e2b565b9650604089013595506060890135945060808901356001600160401b03808211156142bf575f80fd5b6142cb8c838d01613eb2565b90965094508491506142df60a08c01613ef6565b935060c08b01359150808211156142f4575f80fd5b506143018b828c016141c7565b9150509295985092959890939650565b5f8060408385031215614322575f80fd5b61432b83613e2b565b915061433960208401613e2b565b90509250929050565b5f805f805f805f805f806101008b8d03121561435c575f80fd5b6143658b613e2b565b995060208b01356001600160401b0380821115614380575f80fd5b61438c8e838f01613eb2565b909b5099508991506143a060408e01613ef6565b985060608d0135975060808d013591506143b982613e5a565b90955060a08c0135945060c08c013590808211156143d5575f80fd5b506143e28d828e01613eb2565b9150809450508092505060e08b013590509295989b9194979a5092959850565b5f805f805f805f805f60e08a8c03121561441a575f80fd5b6144238a613e2b565b985060208a0135975060408a0135965060608a01356001600160401b038082111561444c575f80fd5b6144588d838e01613eb2565b909850965086915061446c60808d01613ef6565b955061447a60a08d01613fd7565b945060c08c013591508082111561448f575f80fd5b5061449c8c828d01613eb2565b915080935050809150509295985092959850929598565b5f80604083850312156144c4575f80fd5b82356144cf81613e5a565b915061433960208401613fd7565b5f805f805f608086880312156144f1575f80fd5b6144fa86613e2b565b945061450860208701613e2b565b93506040860135925060608601356001600160401b03811115614529575f80fd5b61453588828901613eb2565b969995985093965092949392505050565b5f8060408385031215614557575f80fd5b823561456281613e5a565b9150602083013561457281613e5a565b809150509250929050565b5f805f6060848603121561458f575f80fd5b61459884613e2b565b92506145a660208501613e2b565b9150604084013590509250925092565b5f80604083850312156145c7575f80fd5b50508035926020909101359150565b5f805f80608085870312156145e9575f80fd5b6145f285613e2b565b935061460060208601613e2b565b9250604085013561461081613e5a565b9396929550929360600135925050565b600181811c9082168061463457607f821691505b6020821081036141d757634e487b7160e01b5f52602260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b80820180821115610cae57610cae614652565b818382375f9101908152919050565b81835281816020850137505f828201602090810191909152601f909101601f19169091010190565b61ffff84168152604060208201525f6120ce604083018486614688565b5f808335601e198436030181126146e2575f80fd5b8301803591506001600160401b038211156146fb575f80fd5b602001915036819003821315613eef575f80fd5b61ffff8916815260c060208201525f61472c60c08301898b614688565b6001600160401b038816604084015286606084015285608084015282810360a084015261475a818587614688565b9b9a5050505050505050505050565b81810381811115610cae57610cae614652565b8284823760609190911b6bffffffffffffffffffffffff19169101908152601401919050565b601f8211156139ce57805f5260205f20601f840160051c810160208510156147c75750805b601f840160051c820191505b81811015610dc1575f81556001016147d3565b81516001600160401b038111156147ff576147ff6140c4565b6148138161480d8454614620565b846147a2565b602080601f831160018114614846575f841561482f5750858301515b5f19600386901b1c1916600185901b178555610f36565b5f85815260208120601f198616915b8281101561487457888601518255948401946001909101908401614855565b508582101561489157878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f61ffff8088168352808716602084015250846040830152608060608301526148ce608083018486614688565b979650505050505050565b61ffff86168152608060208201525f6148f6608083018688614688565b6001600160401b0394909416604083015250606001529392505050565b6001600160401b0383111561492a5761492a6140c4565b61493e836149388354614620565b836147a2565b5f601f84116001811461496f575f85156149585750838201355b5f19600387901b1c1916600186901b178355610dc1565b5f83815260208120601f198716915b8281101561499e578685013582556020948501946001909201910161497e565b50868210156149ba575f1960f88860031b161c19848701351681555b505060018560011b0183555050505050565b5f602082840312156149dc575f80fd5b81516001600160401b038111156149f1575f80fd5b8201601f81018413614a01575f80fd5b8051614a0f61418182614108565b818152856020838501011115614a23575f80fd5b8160208401602083015e5f91810160200191909152949350505050565b8082028115828204841417610cae57610cae614652565b634e487b7160e01b5f52601260045260245ffd5b5f82614a7957614a79614a57565b500490565b5f60018201614a8f57614a8f614652565b5060010190565b61ffff861681526001600160a01b038516602082015260a0604082018190525f90614ac390830186613deb565b84151560608401528281036080840152614add8185613deb565b98975050505050505050565b5f8060408385031215614afa575f80fd5b505080516020909101519092909150565b61ffff85168152608060208201525f614b276080830186613deb565b6001600160401b038516604084015282810360608401526148ce8185613deb565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215614b6c575f80fd5b815161166381613e5a565b5f60a08201878352602087602085015260a0604085015281875180845260c0860191506020890193505f5b81811015614bc75784516001600160a01b031683529383019391830191600101614ba2565b50506001600160a01b03969096166060850152505050608001529392505050565b5f81518060208401855e5f93019283525090919050565b5f6116638284614be8565b5f61010061ffff8b168352806020840152614c278184018b613deb565b6001600160401b038a166040850152606084018990526001600160a01b038816608085015260a0840187905283810360c08501529050614c678186613deb565b9150508260e08301529998505050505050505050565b606081525f614c8f6060830186613deb565b6001600160401b039490941660208301525060400152919050565b5f82614cb857614cb8614a57565b500690565b61ffff8716815260c060208201525f614cd960c0830188613deb565b8281036040840152614ceb8188613deb565b6001600160a01b0387811660608601528616608085015283810360a08501529050614d168185613deb565b9998505050505050505050565b60ff60f81b8760f81b1681528560018201525f6001600160401b0360c01b808760c01b166021840152856029840152808560c01b16604984015250614add6051830184614be8565b61ffff8616815260a060208201525f614d8760a0830187613deb565b6001600160401b03861660408401528281036060840152614da88186613deb565b90508281036080840152614add8185613deb56fea26469706673582212205d2202a6900f68c26eea03f1911e187f1b0128136df1580ac316fdb31055bb8e64736f6c63430008190033
Deployed Bytecode Sourcemap
86092:6539:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65877:214;;;;;;;;;;-1:-1:-1;65877:214:0;;;;;:::i;:::-;;:::i;:::-;;;470:14:1;;463:22;445:41;;433:2;418:18;65877:214:0;;;;;;;;72789:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;47083:123::-;;;;;;;;;;-1:-1:-1;47083:123:0;;;;;:::i;:::-;;:::i;:::-;;75149:201;;;;;;;;;;-1:-1:-1;75149:201:0;;;;;:::i;:::-;;:::i;48991:142::-;;;;;;;;;;-1:-1:-1;48991:142:0;;;;;:::i;:::-;;:::i;47214:129::-;;;;;;;;;;-1:-1:-1;47214:129:0;;;;;:::i;:::-;;:::i;73918:108::-;;;;;;;;;;-1:-1:-1;74006:12:0;;73918:108;;;2228:25:1;;;2216:2;2201:18;73918:108:0;2082:177:1;86206:25:0;;;;;;;;;;;;;;;;51443:409;;;;;;;;;;-1:-1:-1;51443:409:0;;;;;:::i;:::-;;:::i;75930:261::-;;;;;;;;;;-1:-1:-1;75930:261:0;;;;;:::i;:::-;;:::i;86567:24::-;;;;;;;;;;-1:-1:-1;86567:24:0;;;;;;;-1:-1:-1;;;;;86567:24:0;;;;;;-1:-1:-1;;;;;4284:32:1;;;4266:51;;4254:2;4239:18;86567:24:0;4120:203:1;92109:95:0;;;;;;;;;;-1:-1:-1;92109:95:0;;;;;:::i;:::-;;:::i;73760:93::-;;;;;;;;;;-1:-1:-1;73843:2:0;73760:93;;;4850:4:1;4838:17;;;4820:36;;4808:2;4793:18;73760:93:0;4678:184:1;66099:344:0;;;;;;;;;;-1:-1:-1;66099:344:0;;;;;:::i;:::-;;:::i;:::-;;;;5733:25:1;;;5789:2;5774:18;;5767:34;;;;5706:18;66099:344:0;5559:248:1;76600:238:0;;;;;;;;;;-1:-1:-1;76600:238:0;;;;;:::i;:::-;;:::i;91896:205::-;;;;;;;;;;-1:-1:-1;91896:205:0;;;;;:::i;:::-;;:::i;49231:250::-;;;;;;;;;;-1:-1:-1;49231:250:0;;;;;:::i;:::-;;:::i;42950:53::-;;;;;;;;;;-1:-1:-1;42950:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;47351:178;;;;;;;;;;-1:-1:-1;47351:178:0;;;;;:::i;:::-;;:::i;53159:37::-;;;;;;;;;;;;53195:1;53159:37;;86598:38;;;;;;;;;;;;;;;53225:33;;;;;;;;;;;;53257:1;53225:33;;90383:556;;;;;;;;;;-1:-1:-1;90383:556:0;;;;;:::i;:::-;;:::i;86532:26::-;;;;;;;;;;-1:-1:-1;86532:26:0;;;;;;;;;;;50105:85;;;;;;;;;;-1:-1:-1;50105:85:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;91779:109;;;;;;;;;;-1:-1:-1;91779:109:0;;;;;:::i;:::-;;:::i;64730:356::-;;;;;;:::i;:::-;;:::i;74089:127::-;;;;;;;;;;-1:-1:-1;74089:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;74190:18:0;74163:7;74190:18;;;:9;:18;;;;;;;74089:127;41513:103;;;;;;;;;;;;;:::i;42820:51::-;;;;;;;;;;-1:-1:-1;42820:51:0;;;;;:::i;:::-;;:::i;65094:586::-;;;;;;:::i;:::-;;:::i;53316:37::-;;;;;;;;;;;;;;;42878:65;;;;;;;;;;-1:-1:-1;42878:65:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;40872:87;;;;;;;;;;-1:-1:-1;40918:7:0;40945:6;-1:-1:-1;;;;;40945:6:0;40872:87;;84551:112;;;;;;;;;;;;;:::i;43010:23::-;;;;;;;;;;-1:-1:-1;43010:23:0;;;;-1:-1:-1;;;;;43010:23:0;;;73008:104;;;;;;;;;;;;;:::i;54574:647::-;;;;;;;;;;-1:-1:-1;54574:647:0;;;;;:::i;:::-;;:::i;53362:83::-;;;;;;;;;;-1:-1:-1;53362:83:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48180:335;;;;;;;;;;-1:-1:-1;48180:335:0;;;;;:::i;:::-;;:::i;77341:436::-;;;;;;;;;;-1:-1:-1;77341:436:0;;;;;:::i;:::-;;:::i;66451:450::-;;;;;;;;;;-1:-1:-1;66451:450:0;;;;;:::i;:::-;;:::i;47891:281::-;;;;;;;;;;-1:-1:-1;47891:281:0;;;;;:::i;:::-;;:::i;90947:111::-;;;;;;;;;;-1:-1:-1;90947:111:0;;;;;:::i;:::-;;:::i;74422:193::-;;;;;;;;;;-1:-1:-1;74422:193:0;;;;;:::i;:::-;;:::i;43405:867::-;;;;;;;;;;-1:-1:-1;43405:867:0;;;;;:::i;:::-;;:::i;92416:109::-;;;;;;;;;;-1:-1:-1;92416:109:0;;;;;:::i;:::-;;:::i;42770:43::-;;;;;;;;;;;;;;;92533:95;;;;;;;;;;-1:-1:-1;92533:95:0;;;;;:::i;:::-;;:::i;48523:136::-;;;;;;;;;;-1:-1:-1;48523:136:0;;;;;:::i;:::-;;:::i;86361:19::-;;;;;;;;;;;;;;;;92212:196;;;;;;;;;;;;;:::i;91447:167::-;;;;;;;;;;-1:-1:-1;91447:167:0;;;;;:::i;:::-;;:::i;91622:149::-;;;;;;;;;;-1:-1:-1;91622:149:0;;;;;:::i;:::-;;:::i;42706:55::-;;;;;;;;;;;;42756:5;42706:55;;46828:247;;;;;;;;;;-1:-1:-1;46828:247:0;;;;;:::i;:::-;;:::i;52086:825::-;;;;;;:::i;:::-;;:::i;74678:151::-;;;;;;;;;;-1:-1:-1;74678:151:0;;;;;:::i;:::-;;:::i;48667:262::-;;;;;;;;;;-1:-1:-1;48667:262:0;;;;;:::i;:::-;;:::i;91066:373::-;;;;;;;;;;-1:-1:-1;91066:373:0;;;;;:::i;:::-;;:::i;86645:51::-;;;;;;;;;;-1:-1:-1;86645:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;53265:42;;;;;;;;;;;;53306:1;53265:42;;86238:26;;;;;;;;;;;;;;;;47676:207;;;;;;;;;;-1:-1:-1;47676:207:0;;;;;:::i;:::-;;:::i;41771:201::-;;;;;;;;;;-1:-1:-1;41771:201:0;;;;;:::i;:::-;;:::i;46515:254::-;;;;;;;;;;-1:-1:-1;46515:254:0;;;;;:::i;:::-;;:::i;84671:103::-;;;;;;;;;;-1:-1:-1;84761:4:0;84671:103;;65877:214;65979:4;-1:-1:-1;;;;;;66003:40:0;;-1:-1:-1;;;66003:40:0;;:80;;-1:-1:-1;;;;;;;;;;2763:40:0;;;66047:36;65996:87;65877:214;-1:-1:-1;;65877:214:0:o;72789:100::-;72843:13;72876:5;72869:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72789:100;:::o;47083:123::-;40758:13;:11;:13::i;:::-;47163:35:::1;::::0;-1:-1:-1;;;47163:35:0;;16260:6:1;16248:19;;47163:35:0::1;::::0;::::1;16230:38:1::0;47163:10:0::1;-1:-1:-1::0;;;;;47163:25:0::1;::::0;::::1;::::0;16203:18:1;;47163:35:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;47083:123:::0;:::o;75149:201::-;75232:4;39503:10;75288:32;39503:10;75304:7;75313:6;75288:8;:32::i;:::-;-1:-1:-1;75338:4:0;;75149:201;-1:-1:-1;;;75149:201:0:o;48991:142::-;40758:13;:11;:13::i;:::-;49082:35:::1;::::0;;::::1;;::::0;;;:22:::1;:35;::::0;;;;:43;48991:142::o;47214:129::-;40758:13;:11;:13::i;:::-;47297:38:::1;::::0;-1:-1:-1;;;47297:38:0;;16260:6:1;16248:19;;47297:38:0::1;::::0;::::1;16230::1::0;47297:10:0::1;-1:-1:-1::0;;;;;47297:28:0::1;::::0;::::1;::::0;16203:18:1;;47297:38:0::1;16086:188:1::0;51443:409:0;39503:10;51705:4;51681:29;51673:90;;;;-1:-1:-1;;;51673:90:0;;16481:2:1;51673:90:0;;;16463:21:1;16520:2;16500:18;;;16493:30;16559:34;16539:18;;;16532:62;-1:-1:-1;;;16610:18:1;;;16603:46;16666:19;;51673:90:0;;;;;;;;;51774:70;51801:11;51814;;51774:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;51774:70:0;;;;;;;;;;;;;;;;;;;;;;51827:6;;-1:-1:-1;51774:70:0;-1:-1:-1;51835:8:0;;;;;;51774:70;;51835:8;;;;51774:70;;;;;;;;;-1:-1:-1;51774:26:0;;-1:-1:-1;;;51774:70:0:i;:::-;51443:409;;;;;;:::o;75930:261::-;76027:4;39503:10;76085:38;76101:4;39503:10;76116:6;76085:15;:38::i;:::-;76134:27;76144:4;76150:2;76154:6;76134:9;:27::i;:::-;-1:-1:-1;76179:4:0;;75930:261;-1:-1:-1;;;;75930:261:0:o;92109:95::-;40758:13;:11;:13::i;:::-;92174:12:::1;:22:::0;;;::::1;;;;-1:-1:-1::0;;92174:22:0;;::::1;::::0;;;::::1;::::0;;92109:95::o;66099:344::-;66313:14;66329:11;66360:75;66377:11;66390:10;66402:7;66411;66420:14;;66360:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;66360:16:0;;-1:-1:-1;;;66360:75:0:i;:::-;66353:82;;;;66099:344;;;;;;;;;:::o;76600:238::-;76688:4;39503:10;76744:64;39503:10;76760:7;76797:10;76769:25;39503:10;76760:7;76769:9;:25::i;:::-;:38;;;;:::i;:::-;76744:8;:64::i;91896:205::-;40758:13;:11;:13::i;:::-;92023:1:::1;92008:12;:16;92000:47;;;::::0;-1:-1:-1;;;92000:47:0;;17160:2:1;92000:47:0::1;::::0;::::1;17142:21:1::0;17199:2;17179:18;;;17172:30;-1:-1:-1;;;17218:18:1;;;17211:48;17276:18;;92000:47:0::1;16958:342:1::0;92000:47:0::1;92058:20;:35:::0;91896:205::o;49231:250::-;49373:32;;;49327:4;49373:32;;;:19;:32;;;;;49344:61;;49327:4;;49373:32;49344:61;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49461:11;;49451:22;;;;;;;:::i;:::-;;;;;;;;49433:13;49423:24;;;;;;:50;49416:57;;;49231:250;;;;;:::o;47351:178::-;40758:13;:11;:13::i;:::-;47466:55:::1;::::0;-1:-1:-1;;;47466:55:0;;-1:-1:-1;;;;;47466:10:0::1;:29;::::0;::::1;::::0;:55:::1;::::0;47496:11;;47509;;;;47466:55:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;47351:178:::0;;;:::o;90383:556::-;90453:6;90439:10;;:20;90435:497;;90485:2;90476:6;:11;;;90502:7;:12;90383:556;:::o;90435:497::-;90554:6;90536:10;;90549:1;90536:14;;;;:::i;:::-;:24;90532:400;;90586:2;90577:6;:11;;;90603:7;:12;90383:556;:::o;90532:400::-;90655:6;90637:10;;90650:1;90637:14;;;;:::i;:::-;:24;90633:299;;90687:2;90678:6;:11;;;90704:7;:12;90383:556;:::o;90633:299::-;90757:6;90738:10;;90751:2;90738:15;;;;:::i;:::-;:25;90734:198;;90789:2;90780:6;:11;;;90806:7;:12;90383:556;:::o;90734:198::-;90859:6;90840:10;;90853:2;90840:15;;;;:::i;:::-;:25;90836:96;;90891:2;90882:6;:11;;;90908:7;:12;90836:96;90383:556;:::o;91779:109::-;40758:13;:11;:13::i;:::-;91856:11:::1;:24:::0;91779:109::o;64730:356::-;64947:131;64953:5;64960:11;64973:10;64985:7;64994:25;;;;:11;:25;:::i;:::-;65021:29;;;;;;;;:::i;:::-;65052:25;;;;:11;:25;:::i;:::-;64947:131;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;64947:5:0;;-1:-1:-1;;;64947:131:0:i;41513:103::-;40758:13;:11;:13::i;:::-;41578:30:::1;41605:1;41578:18;:30::i;:::-;41513:103::o:0;42820:51::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;65094:586::-;65380:292;65407:5;65427:11;65453:10;65478:7;65500:8;;65380:292;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;65523:14:0;;-1:-1:-1;65552:25:0;;-1:-1:-1;;65552:25:0;;;:11;:25;:::i;:::-;65592:29;;;;;;;;:::i;:::-;65636:25;;;;:11;:25;:::i;:::-;65380:292;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;65380:12:0;;-1:-1:-1;;;65380:292:0:i;:::-;;65094:586;;;;;;;;:::o;84551:112::-;84618:4;84642:13;74006:12;;;73918:108;84642:13;84635:20;;84551:112;:::o;73008:104::-;73064:13;73097:7;73090:14;;;;;:::i;54574:647::-;39503:10;54889:4;54865:29;54857:79;;;;-1:-1:-1;;;54857:79:0;;19171:2:1;54857:79:0;;;19153:21:1;19210:2;19190:18;;;19183:30;19249:34;19229:18;;;19222:62;-1:-1:-1;;;19300:18:1;;;19293:35;19345:19;;54857:79:0;18969:401:1;54857:79:0;54976:42;54998:4;55005:3;55010:7;54976:13;:42::i;:::-;54966:52;;55064:3;-1:-1:-1;;;;;55034:43:0;55051:11;55034:43;;;55069:7;55034:43;;;;2228:25:1;;2216:2;2201:18;;2082:177;55034:43:0;;;;;;;;55107:106;;-1:-1:-1;;;55107:106:0;;-1:-1:-1;;;;;55107:28:0;;;;;55141:11;;55107:106;;55154:11;;55167;;;;55180:6;;55188:5;;55195:7;;55204:8;;;;55107:106;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54574:647;;;;;;;;;;:::o;48180:335::-;48304:35;;;48284:17;48304:35;;;:19;:35;;;;;48284:55;;48259:12;;48284:17;48304:35;48284:55;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48358:4;:11;48373:1;48358:16;48350:63;;;;-1:-1:-1;;;48350:63:0;;20335:2:1;48350:63:0;;;20317:21:1;20374:2;20354:18;;;20347:30;20413:34;20393:18;;;20386:62;-1:-1:-1;;;20464:18:1;;;20457:32;20506:19;;48350:63:0;20133:398:1;48350:63:0;48431:31;48442:1;48459:2;48445:4;:11;:16;;;;:::i;:::-;48431:4;;:31;:10;:31::i;:::-;48424:38;48180:335;-1:-1:-1;;;48180:335:0:o;77341:436::-;77434:4;39503:10;77434:4;77517:25;39503:10;77534:7;77517:9;:25::i;:::-;77490:52;;77581:15;77561:16;:35;;77553:85;;;;-1:-1:-1;;;77553:85:0;;20871:2:1;77553:85:0;;;20853:21:1;20910:2;20890:18;;;20883:30;20949:34;20929:18;;;20922:62;-1:-1:-1;;;21000:18:1;;;20993:35;21045:19;;77553:85:0;20669:401:1;77553:85:0;77674:60;77683:5;77690:7;77718:15;77699:16;:34;77674:8;:60::i;66451:450::-;66738:14;66754:11;66785:108;66809:11;66822:10;66834:7;66843:8;;66785:108;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;66785:108:0;;;;;;;;;;;;;;;;;;;;;;66853:14;;-1:-1:-1;66869:7:0;;-1:-1:-1;66785:108:0;66878:14;;;;;;66785:108;;66878:14;;;;66785:108;;;;;;;;;-1:-1:-1;66785:23:0;;-1:-1:-1;;;66785:108:0:i;:::-;66778:115;;;;66451:450;;;;;;;;;;;;:::o;47891:281::-;40758:13;:11;:13::i;:::-;48063:14:::1;;48087:4;48046:47;;;;;;;;;;:::i;:::-;;::::0;;-1:-1:-1;;48046:47:0;;::::1;::::0;;;;;;48008:35:::1;::::0;::::1;;::::0;;;:19:::1;48046:47;48008:35:::0;;;:85:::1;::::0;:35;:85:::1;:::i;:::-;;48109:55;48133:14;48149;;48109:55;;;;;;;;:::i;:::-;;;;;;;;47891:281:::0;;;:::o;90947:111::-;40758:13;:11;:13::i;:::-;91025:9:::1;:25:::0;;-1:-1:-1;;;;;91025:25:0;;::::1;::::0;::::1;-1:-1:-1::0;;;;;;91025:25:0;;::::1;::::0;;;::::1;::::0;;90947:111::o;74422:193::-;74501:4;39503:10;74557:28;39503:10;74574:2;74578:6;74557:9;:28::i;43405:867::-;39503:10;43698;-1:-1:-1;;;;;43674:35:0;;43666:83;;;;-1:-1:-1;;;43666:83:0;;23806:2:1;43666:83:0;;;23788:21:1;23845:2;23825:18;;;23818:30;23884:34;23864:18;;;23857:62;-1:-1:-1;;;23935:18:1;;;23928:33;23978:19;;43666:83:0;23604:399:1;43666:83:0;43791:32;;;43762:26;43791:32;;;:19;:32;;;;;43762:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44011:13;:20;43989:11;;:18;;:42;:70;;;;;44058:1;44035:13;:20;:24;43989:70;:124;;;;-1:-1:-1;44089:24:0;;;;;;44063:22;;;;44073:11;;;;44063:22;:::i;:::-;;;;;;;;:50;43989:124;43967:217;;;;-1:-1:-1;;;43967:217:0;;24210:2:1;43967:217:0;;;24192:21:1;24249:2;24229:18;;;24222:30;24288:34;24268:18;;;24261:62;-1:-1:-1;;;24339:18:1;;;24332:41;24390:19;;43967:217:0;24008:407:1;43967:217:0;44197:67;44221:11;44234;;44197:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;44197:67:0;;;;;;;;;;;;;;;;;;;;;;44247:6;;-1:-1:-1;44197:67:0;-1:-1:-1;44255:8:0;;;;;;44197:67;;44255:8;;;;44197:67;;;;;;;;;-1:-1:-1;44197:23:0;;-1:-1:-1;;;44197:67:0:i;92416:109::-;40758:13;:11;:13::i;:::-;92488::::1;:29:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;92488:29:0;;::::1;::::0;;;::::1;::::0;;92416:109::o;92533:95::-;40758:13;:11;:13::i;:::-;92600:20:::1;92612:7;92600:11;:20::i;48523:136::-:0;40758:13;:11;:13::i;:::-;48593:8:::1;:20:::0;;-1:-1:-1;;;;;;48593:20:0::1;-1:-1:-1::0;;;;;48593:20:0;::::1;::::0;;::::1;::::0;;;48629:22:::1;::::0;4266:51:1;;;48629:22:0::1;::::0;4254:2:1;4239:18;48629:22:0::1;;;;;;;48523:136:::0;:::o;92212:196::-;40758:13;:11;:13::i;:::-;92268:14:::1;::::0;;;::::1;;;92267:15;92259:46;;;::::0;-1:-1:-1;;;92259:46:0;;24622:2:1;92259:46:0::1;::::0;::::1;24604:21:1::0;24661:2;24641:18;;;24634:30;-1:-1:-1;;;24680:18:1;;;24673:48;24738:18;;92259:46:0::1;24420:342:1::0;92259:46:0::1;92316:14;:21:::0;;92361:12:::1;92348:10;:25:::0;-1:-1:-1;;92384:16:0;;;;;92212:196::o;91447:167::-;40758:13;:11;:13::i;:::-;-1:-1:-1;;;;;91563:29:0;;;::::1;;::::0;;;:19:::1;:29;::::0;;;;:43;;-1:-1:-1;;91563:43:0::1;::::0;::::1;;::::0;;;::::1;::::0;;91447:167::o;91622:149::-;40758:13;:11;:13::i;:::-;91727:15:::1;:36:::0;91622:149::o;46828:247::-;40758:13;:11;:13::i;:::-;47005:62:::1;::::0;-1:-1:-1;;;47005:62:0;;-1:-1:-1;;;;;47005:10:0::1;:20;::::0;::::1;::::0;:62:::1;::::0;47026:8;;47036;;47046:11;;47059:7;;;;47005:62:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;52086:825:::0;52340:27;;;52318:19;52340:27;;;:14;:27;;;;;;:40;;;;52368:11;;;;52340:40;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;52340:48:0;;;;;;;;;;;;-1:-1:-1;52340:48:0;52399:78;;;;-1:-1:-1;;;52399:78:0;;25472:2:1;52399:78:0;;;25454:21:1;25511:2;25491:18;;;25484:30;25550:34;25530:18;;;25523:62;-1:-1:-1;;;25601:18:1;;;25594:38;25649:19;;52399:78:0;25270:404:1;52399:78:0;52519:11;52506:8;;52496:19;;;;;;;:::i;:::-;;;;;;;;:34;52488:85;;;;-1:-1:-1;;;52488:85:0;;25881:2:1;52488:85:0;;;25863:21:1;25920:2;25900:18;;;25893:30;25959:34;25939:18;;;25932:62;-1:-1:-1;;;26010:18:1;;;26003:36;26056:19;;52488:85:0;25679:402:1;52488:85:0;52621:27;;;52680:1;52621:27;;;:14;:27;;;;;;:40;;;;52649:11;;;;52621:40;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;52621:48:0;;;;;;;;;;;;:61;;;;52751:70;;;;;;;;;;;;;;;;;;;52778:11;;52791;;52751:70;;;;;;52791:11;52751:70;;52791:11;52751:70;;;;;;;;;-1:-1:-1;;52751:70:0;;;;;;;;;;;;;;;;;;;;;;52804:6;;-1:-1:-1;52751:70:0;-1:-1:-1;52812:8:0;;;;;;52751:70;;52812:8;;;;52751:70;;;;;;;;;-1:-1:-1;52751:26:0;;-1:-1:-1;;;52751:70:0:i;:::-;52837:66;52857:11;52870;;52883:6;52891:11;52837:66;;;;;;;;;;:::i;:::-;;;;;;;;52262:649;52086:825;;;;;;:::o;74678:151::-;-1:-1:-1;;;;;74794:18:0;;;74767:7;74794:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;74678:151::o;48667:262::-;40758:13;:11;:13::i;:::-;48807:28:::1;::::0;;::::1;;::::0;;;:15:::1;:28;::::0;;;;;;;:41;;::::1;::::0;;;;;;;;;;:51;;;48874:47;;26807:34:1;;;26857:18;;26850:43;;;;26909:18;;;26902:34;;;48874:47:0::1;::::0;26770:2:1;26755:18;48874:47:0::1;26584:358:1::0;91066:373:0;40758:13;:11;:13::i;:::-;91244:2:::1;91223:17;:23;;:51;;;;;91272:2;91250:18;:24;;91223:51;91201:126;;;::::0;-1:-1:-1;;;91201:126:0;;27149:2:1;91201:126:0::1;::::0;::::1;27131:21:1::0;27188:2;27168:18;;;27161:30;27227:27;27207:18;;;27200:55;27272:18;;91201:126:0::1;26947:349:1::0;91201:126:0::1;91338:6;:26:::0;;;;91375:7:::1;:28:::0;91414:9:::1;:17:::0;;-1:-1:-1;;91414:17:0::1;::::0;;91066:373::o;47676:207::-;40758:13;:11;:13::i;:::-;47777:35:::1;::::0;::::1;;::::0;;;:19:::1;:35;::::0;;;;:43:::1;47815:5:::0;;47777:35;:43:::1;:::i;:::-;;47836:39;47853:14;47869:5;;47836:39;;;;;;;;:::i;41771:201::-:0;40758:13;:11;:13::i;:::-;-1:-1:-1;;;;;41860:22:0;::::1;41852:73;;;::::0;-1:-1:-1;;;41852:73:0;;28702:2:1;41852:73:0::1;::::0;::::1;28684:21:1::0;28741:2;28721:18;;;28714:30;28780:34;28760:18;;;28753:62;-1:-1:-1;;;28831:18:1;;;28824:36;28877:19;;41852:73:0::1;28500:402:1::0;41852:73:0::1;41936:28;41955:8;41936:18;:28::i;46515:254::-:0;46693:68;;-1:-1:-1;;;46693:68:0;;29144:6:1;29177:15;;;46693:68:0;;;29159:34:1;29229:15;;29209:18;;;29202:43;46742:4:0;29261:18:1;;;29254:60;29330:18;;;29323:34;;;46661:12:0;;46693:10;-1:-1:-1;;;;;46693:20:0;;;;29106:19:1;;46693:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;46693:68:0;;;;;;;;;;;;:::i;:::-;46686:75;46515:254;-1:-1:-1;;;;;46515:254:0:o;41037:132::-;40918:7;40945:6;-1:-1:-1;;;;;40945:6:0;39503:10;41101:23;41093:68;;;;-1:-1:-1;;;41093:68:0;;30236:2:1;41093:68:0;;;30218:21:1;;;30255:18;;;30248:30;30314:34;30294:18;;;30287:62;30366:18;;41093:68:0;30034:356:1;81334:346:0;-1:-1:-1;;;;;81436:19:0;;81428:68;;;;-1:-1:-1;;;81428:68:0;;30597:2:1;81428:68:0;;;30579:21:1;30636:2;30616:18;;;30609:30;30675:34;30655:18;;;30648:62;-1:-1:-1;;;30726:18:1;;;30719:34;30770:19;;81428:68:0;30395:400:1;81428:68:0;-1:-1:-1;;;;;81515:21:0;;81507:68;;;;-1:-1:-1;;;81507:68:0;;31002:2:1;81507:68:0;;;30984:21:1;31041:2;31021:18;;;31014:30;31080:34;31060:18;;;31053:62;-1:-1:-1;;;31131:18:1;;;31124:32;31173:19;;81507:68:0;30800:398:1;81507:68:0;-1:-1:-1;;;;;81588:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;81640:32;;2228:25:1;;;81640:32:0;;2201:18:1;81640:32:0;;;;;;;81334:346;;;:::o;56492:566::-;56692:16;56711:19;:8;56692:16;56711;:19::i;:::-;56692:38;-1:-1:-1;56747:21:0;;;56743:308;;56785:52;56794:11;56807;56820:6;56828:8;56785;:52::i;:::-;56743:308;;;-1:-1:-1;;56859:30:0;;;;56855:196;;56906:59;56922:11;56935;56948:6;56956:8;56906:15;:59::i;56855:196::-;56998:41;;-1:-1:-1;;;56998:41:0;;31405:2:1;56998:41:0;;;31387:21:1;31444:2;31424:18;;;31417:30;31483:33;31463:18;;;31456:61;31534:18;;56998:41:0;31203:355:1;81971:419:0;82072:24;82099:25;82109:5;82116:7;82099:9;:25::i;:::-;82072:52;;-1:-1:-1;;82139:16:0;:37;82135:248;;82221:6;82201:16;:26;;82193:68;;;;-1:-1:-1;;;82193:68:0;;31765:2:1;82193:68:0;;;31747:21:1;31804:2;31784:18;;;31777:30;31843:31;31823:18;;;31816:59;31892:18;;82193:68:0;31563:353:1;82193:68:0;82305:51;82314:5;82321:7;82349:6;82330:16;:25;82305:8;:51::i;:::-;82061:329;81971:419;;;:::o;87914:1780::-;88055:1;88046:6;:10;88038:61;;;;-1:-1:-1;;;88038:61:0;;32123:2:1;88038:61:0;;;32105:21:1;32162:2;32142:18;;;32135:30;32201:34;32181:18;;;32174:62;-1:-1:-1;;;32252:18:1;;;32245:36;32298:19;;88038:61:0;31921:402:1;88038:61:0;88117:14;;;;;;;88112:115;;40918:7;40945:6;-1:-1:-1;;;;;88156:15:0;;;40945:6;;88156:15;;:32;;-1:-1:-1;40918:7:0;40945:6;-1:-1:-1;;;;;88175:13:0;;;40945:6;;88175:13;88156:32;88148:67;;;;-1:-1:-1;;;88148:67:0;;32530:2:1;88148:67:0;;;32512:21:1;32569:2;32549:18;;;32542:30;-1:-1:-1;;;32588:18:1;;;32581:52;32650:18;;88148:67:0;32328:346:1;88148:67:0;88273:9;;88239:17;;88273:9;;88269:64;;;88299:22;88308:12;88299:8;:22::i;:::-;88357:13;-1:-1:-1;;;;;88349:21:0;:4;-1:-1:-1;;;;;88349:21:0;;:49;;;;-1:-1:-1;;;;;;88375:23:0;;;;;;:19;:23;;;;;;;;88374:24;88349:49;88345:395;;;88467:15;;88457:6;88441:13;88451:2;-1:-1:-1;;;;;74190:18:0;74163:7;74190:18;;;:9;:18;;;;;;;74089:127;88441:13;:22;;;;:::i;:::-;:41;;88415:123;;;;-1:-1:-1;;;88415:123:0;;32881:2:1;88415:123:0;;;32863:21:1;32920:2;32900:18;;;32893:30;-1:-1:-1;;;32939:18:1;;;32932:50;32999:18;;88415:123:0;32679:344:1;88415:123:0;88571:11;;88561:6;:21;;88553:50;;;;-1:-1:-1;;;88553:50:0;;33230:2:1;88553:50:0;;;33212:21:1;33269:2;33249:18;;;33242:30;-1:-1:-1;;;33288:18:1;;;33281:46;33344:18;;88553:50:0;33028:340:1;88553:50:0;88622:12;;;;;;;88618:88;;;88687:3;88677:6;;88668;:15;;;;:::i;:::-;88667:23;;;;:::i;:::-;88655:35;;88618:88;88722:4;:6;;;:4;:6;;;:::i;:::-;;;;;;88345:395;88762:13;-1:-1:-1;;;;;88756:19:0;:2;-1:-1:-1;;;;;88756:19:0;;:49;;;;-1:-1:-1;;;;;;88780:25:0;;;;;;:19;:25;;;;;;;;88779:26;88756:49;88752:235;;;88840:11;;88830:6;:21;;88822:50;;;;-1:-1:-1;;;88822:50:0;;33230:2:1;88822:50:0;;;33212:21:1;33269:2;33249:18;;;33242:30;-1:-1:-1;;;33288:18:1;;;33281:46;33344:18;;88822:50:0;33028:340:1;88822:50:0;88891:12;;;;;;;88887:89;;;88957:3;88946:7;;88937:6;:16;;;;:::i;:::-;88936:24;;;;:::i;:::-;88924:36;;88887:89;89048:4;88999:28;74190:18;;;:9;:18;;;;;;89118:20;;89094:44;;;;;;;89169:49;;-1:-1:-1;89206:12:0;;;;;;;89205:13;89169:49;:87;;;;;89243:13;-1:-1:-1;;;;;89235:21:0;:4;-1:-1:-1;;;;;89235:21:0;;;89169:87;:130;;;;-1:-1:-1;;;;;;89274:25:0;;;;;;:19;:25;;;;;;;;89273:26;89169:130;:169;;;;;89323:15;;89316:4;;:22;89169:169;89151:259;;;89365:33;89377:20;;89365:11;:33::i;:::-;89426:13;;89422:265;;89456:18;89477;89486:9;89477:6;:18;:::i;:::-;89456:39;;89510:47;89526:4;89540;89547:9;89510:15;:47::i;:::-;89572:37;89588:4;89594:2;89598:10;89572:15;:37::i;:::-;89441:180;89422:265;;;89642:33;89658:4;89664:2;89668:6;89642:15;:33::i;55415:471::-;55621:14;55637:11;55705:20;55728:47;55747:10;55759:15;55766:7;55759:6;:15::i;:::-;62135:48;;;53257:1;62135:48;;;41617:49:1;41682:11;;;41675:27;;;;41758:3;41736:16;;;;-1:-1:-1;;;;;;41732:51:1;41718:12;;;41711:73;62135:48:0;;;;;;;;;41800:12:1;;;;62135:48:0;;;62006:185;55728:47;55793:85;;-1:-1:-1;;;55793:85:0;;55705:70;;-1:-1:-1;;;;;;55793:10:0;:23;;;;:85;;55817:11;;55838:4;;55705:70;;55854:7;;55863:14;;55793:85;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;55786:92;;;;;55415:471;;;;;;;;:::o;57066:843::-;57335:11;57359:66;57374:11;57335;57396:14;57335:11;57359:14;:66::i;:::-;57451:20;57463:7;57451:11;:20::i;:::-;-1:-1:-1;57438:33:0;-1:-1:-1;57491:50:0;57502:5;57509:11;57522:10;57438:33;57491:10;:50::i;:::-;57482:59;;57609:1;57600:6;:10;57592:51;;;;-1:-1:-1;;;57592:51:0;;35042:2:1;57592:51:0;;;35024:21:1;35081:2;35061:18;;;35054:30;35120;35100:18;;;35093:58;35168:18;;57592:51:0;34840:352:1;57592:51:0;57656:22;57681:46;57700:10;57712:14;57719:6;57712;:14::i;57681:46::-;57656:71;;57738:94;57746:11;57759:9;57770:14;57786:18;57806:14;57822:9;57738:7;:94::i;:::-;57882:10;57875:5;-1:-1:-1;;;;;57850:51:0;57862:11;57850:51;;;57894:6;57850:51;;;;2228:25:1;;2216:2;2201:18;;2082:177;57850:51:0;;;;;;;;57348:561;57066:843;;;;;;;;;:::o;42132:191::-;42206:16;42225:6;;-1:-1:-1;;;;;42242:17:0;;;-1:-1:-1;;;;;;42242:17:0;;;;;;42275:40;;42225:6;;;;;;;42275:40;;42206:16;42275:40;42195:128;42132:191;:::o;58382:998::-;58722:11;58746:77;58761:11;53306:1;58792:14;-1:-1:-1;;;;;58746:77:0;;:14;:77::i;:::-;58849:20;58861:7;58849:11;:20::i;:::-;-1:-1:-1;58836:33:0;-1:-1:-1;58889:50:0;58900:5;58907:11;58920:10;58836:33;58889:10;:50::i;:::-;58880:59;;58967:1;58958:6;:10;58950:51;;;;-1:-1:-1;;;58950:51:0;;35042:2:1;58950:51:0;;;35024:21:1;35081:2;35061:18;;;35054:30;35120;35100:18;;;35093:58;35168:18;;58950:51:0;34840:352:1;58950:51:0;59082:22;59107:91;59133:10;59145;59157:14;59164:6;59157;:14::i;:::-;59173:8;59183:14;59107:25;:91::i;:::-;59082:116;;59209:94;59217:11;59230:9;59241:14;59257:18;59277:14;59293:9;59209:7;:94::i;:::-;59353:10;59346:5;-1:-1:-1;;;;;59321:51:0;59333:11;59321:51;;;59365:6;59321:51;;;;2228:25:1;;2216:2;2201:18;;2082:177;59321:51:0;;;;;;;;58735:645;58382:998;;;;;;;;;;;:::o;85519:425::-;85653:4;39503:10;85803:4;-1:-1:-1;;;;;85786:22:0;;;;;;:42;;;85821:7;-1:-1:-1;;;;;85812:16:0;:5;-1:-1:-1;;;;;85812:16:0;;;85786:42;85782:88;;;85830:40;85846:5;85853:7;85862;85830:15;:40::i;:::-;85881:30;85891:5;85898:3;85903:7;85881:9;:30::i;:::-;-1:-1:-1;85929:7:0;;85519:425;-1:-1:-1;;;85519:425:0:o;20562:2833::-;20682:12;20731:7;20715:12;20731:7;20725:2;20715:12;:::i;:::-;:23;;20707:50;;;;-1:-1:-1;;;20707:50:0;;35399:2:1;20707:50:0;;;35381:21:1;35438:2;35418:18;;;35411:30;-1:-1:-1;;;35457:18:1;;;35450:44;35511:18;;20707:50:0;35197:338:1;20707:50:0;20793:16;20802:7;20793:6;:16;:::i;:::-;20776:6;:13;:33;;20768:63;;;;-1:-1:-1;;;20768:63:0;;35742:2:1;20768:63:0;;;35724:21:1;35781:2;35761:18;;;35754:30;-1:-1:-1;;;35800:18:1;;;35793:47;35857:18;;20768:63:0;35540:341:1;20768:63:0;20844:22;20910:15;;20939:2005;;;;23088:4;23082:11;23069:24;;23277:1;23266:9;23259:20;23327:4;23316:9;23312:20;23306:4;23299:34;20903:2445;;20939:2005;21124:4;21118:11;21105:24;;21793:2;21784:7;21780:16;22181:9;22174:17;22168:4;22164:28;22152:9;22141;22137:25;22133:60;22230:7;22226:2;22222:16;22487:6;22473:9;22466:17;22460:4;22456:28;22444:9;22436:6;22432:22;22428:57;22424:70;22258:434;22521:3;22517:2;22514:11;22258:434;;;22663:9;;22652:21;;22563:4;22555:13;;;;22596;22258:434;;;-1:-1:-1;;22712:26:0;;;22924:2;22907:11;-1:-1:-1;;22903:25:0;22897:4;22890:39;-1:-1:-1;20903:2445:0;-1:-1:-1;23378:9:0;20562:2833;-1:-1:-1;;;;20562:2833:0:o;55894:590::-;56171:14;56187:11;56258:20;56281:92;56307:10;56319;56331:15;56338:7;56331:6;:15::i;56281:92::-;56391:85;;-1:-1:-1;;;56391:85:0;;56258:115;;-1:-1:-1;;;;;;56391:10:0;:23;;;;:85;;56415:11;;56436:4;;56258:115;;56452:7;;56461:14;;56391:85;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56384:92;;;;;55894:590;;;;;;;;;;:::o;50479:573::-;50677:12;50691:19;50714:208;50762:9;50786:3;50827:39;;;50868:11;50881;50894:6;50902:8;50804:107;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;50804:107:0;;;;;;;;;;;;;;-1:-1:-1;;;;;50804:107:0;-1:-1:-1;;;;;;50804:107:0;;;;;;;;;;50722:4;;50714:208;;:33;:208::i;:::-;50676:246;;;;50938:7;50933:112;;50962:71;50982:11;50995;51008:6;51016:8;51026:6;50962:19;:71::i;89702:673::-;86739:12;:19;;-1:-1:-1;;86739:19:0;;;;;89870:16:::1;::::0;;89884:1:::1;89870:16:::0;;;;;::::1;::::0;;-1:-1:-1;;89870:16:0::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;89870:16:0::1;89846:40;;89915:4;89897;89902:1;89897:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1::0;;;;;89897:23:0::1;;;-1:-1:-1::0;;;;;89897:23:0::1;;;::::0;::::1;89941:15;-1:-1:-1::0;;;;;89941:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;89931:4;89936:1;89931:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1::0;;;;;89931:32:0::1;;;-1:-1:-1::0;;;;;89931:32:0::1;;;::::0;::::1;89976:122;90007:4;90035:15;90066:21;89976:8;:122::i;:::-;90317:9;::::0;90137:230:::1;::::0;-1:-1:-1;;;90137:230:0;;-1:-1:-1;;;;;90137:15:0::1;:66:::0;::::1;::::0;::::1;::::0;:230:::1;::::0;90218:21;;90254:1:::1;::::0;90298:4;;90317:9;;;::::1;::::0;;::::1;::::0;90341:15:::1;::::0;90137:230:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;86781:12:0;:20;;-1:-1:-1;;86781:20:0;;;-1:-1:-1;;;;89702:673:0:o;23771:307::-;23845:5;23888:10;:6;23897:1;23888:10;:::i;:::-;23871:6;:13;:27;;23863:59;;;;-1:-1:-1;;;23863:59:0;;38023:2:1;23863:59:0;;;38005:21:1;38062:2;38042:18;;;38035:30;-1:-1:-1;;;38081:18:1;;;38074:49;38140:18;;23863:59:0;37821:343:1;23863:59:0;-1:-1:-1;24002:29:0;24018:3;24002:29;23996:36;;23771:307::o;57917:457::-;58072:10;58084:15;58103:28;58122:8;58103:18;:28::i;:::-;58071:60;;-1:-1:-1;58071:60:0;-1:-1:-1;;;;;;58146:16:0;;58142:69;;58192:6;58179:20;;58142:69;58223:11;58237:16;58244:8;58237:6;:16::i;:::-;58223:30;;58273:34;58283:11;58296:2;58300:6;58273:9;:34::i;:::-;58264:43;;58355:2;-1:-1:-1;;;;;58325:41:0;58342:11;58325:41;;;58359:6;58325:41;;;;2228:25:1;;2216:2;2201:18;;2082:177;58325:41:0;;;;;;;;58060:314;;;57917:457;;;;:::o;59388:1916::-;59569:12;59583:10;59595:15;59612:27;59641:17;59662:35;59688:8;59662:25;:35::i;:::-;59568:129;;;;;;;;;;59710:13;59726:15;:28;59742:11;59726:28;;;;;;;;;;;;;;;59755:11;59726:41;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;59726:49:0;;;;;;;;;;;;;;-1:-1:-1;59800:16:0;59807:8;59800:6;:16::i;:::-;59786:30;;59947:8;59942:167;;59981:45;59991:11;60012:4;60019:6;59981:9;:45::i;:::-;60041:28;;;;;;;:15;:28;;;;;;;:41;;59972:54;;-1:-1:-1;60093:4:0;;60041:41;;60070:11;;60041:41;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;60041:49:0;;;;;;;;;;:56;;-1:-1:-1;;60041:56:0;;;;;;;;;;59942:167;-1:-1:-1;;;;;61398:20:0;;;60121:97;;60163:22;;-1:-1:-1;;;;;4284:32:1;;4266:51;;60163:22:0;;4254:2:1;4239:18;60163:22:0;;;;;;;60200:7;;;;;;;;;60121:97;60292:11;60340;60377:6;60417:8;60452:4;60481:2;60509:6;60557:14;60272:17;60642:8;:33;;60665:10;-1:-1:-1;;;;;60642:33:0;;;;60653:9;60642:33;60631:44;;60687:12;60701:19;60724:233;60772:9;60796:3;60837:34;;;60873:10;60885;60897:5;60904;60911:3;60916:7;60925:15;60942:3;60814:132;;;;;;;;;;;;;;;:::i;60724:233::-;60686:271;;;;60974:7;60970:327;;;61013:18;;;;;;61051:62;;;;;;;;;;61089:10;;61101:5;;61013:18;;61051:62;:::i;:::-;;;;;;;;60983:142;60970:327;;;61218:67;61238:10;61250;61262:5;61269:7;61278:6;61218:19;:67::i;:::-;59557:1747;;;;;;;;;;;;;;;;;;59388:1916;;;;:::o;78247:806::-;-1:-1:-1;;;;;78344:18:0;;78336:68;;;;-1:-1:-1;;;78336:68:0;;40065:2:1;78336:68:0;;;40047:21:1;40104:2;40084:18;;;40077:30;40143:34;40123:18;;;40116:62;-1:-1:-1;;;40194:18:1;;;40187:35;40239:19;;78336:68:0;39863:401:1;78336:68:0;-1:-1:-1;;;;;78423:16:0;;78415:64;;;;-1:-1:-1;;;78415:64:0;;40471:2:1;78415:64:0;;;40453:21:1;40510:2;40490:18;;;40483:30;40549:34;40529:18;;;40522:62;-1:-1:-1;;;40600:18:1;;;40593:33;40643:19;;78415:64:0;40269:399:1;78415:64:0;-1:-1:-1;;;;;78565:15:0;;78543:19;78565:15;;;:9;:15;;;;;;78599:21;;;;78591:72;;;;-1:-1:-1;;;78591:72:0;;40875:2:1;78591:72:0;;;40857:21:1;40914:2;40894:18;;;40887:30;40953:34;40933:18;;;40926:62;-1:-1:-1;;;41004:18:1;;;40997:36;41050:19;;78591:72:0;40673:402:1;78591:72:0;-1:-1:-1;;;;;78699:15:0;;;;;;;:9;:15;;;;;;78717:20;;;78699:38;;78917:13;;;;;;;;;;:23;;;;;;78969:26;;;;;;78731:6;2228:25:1;;2216:2;2201:18;;2082:177;78969:26:0;;;;;;;;79008:37;82990:91;61438:241;61499:6;;61534:22;86038:9;61534:7;:22;:::i;:::-;61518:38;-1:-1:-1;;;;;;61575:28:0;;;61567:70;;;;-1:-1:-1;;;61567:70:0;;41282:2:1;61567:70:0;;;41264:21:1;41321:2;41301:18;;;41294:30;41360:31;41340:18;;;41333:59;41409:18;;61567:70:0;41080:353:1;45238:473:0;45417:21;45441:28;45454:14;45441:12;:28::i;:::-;45499;;;;45480:16;45499:28;;;:15;:28;;;;;;;;:35;;;;;;;;;;45417:52;;-1:-1:-1;45553:15:0;45545:59;;;;-1:-1:-1;;;45545:59:0;;42025:2:1;45545:59:0;;;42007:21:1;42064:2;42044:18;;;42037:30;42103:33;42083:18;;;42076:61;42154:18;;45545:59:0;41823:355:1;45545:59:0;45643:23;45657:9;45643:11;:23;:::i;:::-;45623:16;:43;;45615:88;;;;-1:-1:-1;;;45615:88:0;;42385:2:1;45615:88:0;;;42367:21:1;;;42404:18;;;42397:30;42463:34;42443:18;;;42436:62;42515:18;;45615:88:0;42183:356:1;61816:182:0;61882:16;;61929:22;86038:9;61929:7;:22;:::i;:::-;61922:29;-1:-1:-1;61976:14:0;61922:29;61976:7;:14;:::i;:::-;61962:28;;61816:182;;;:::o;84968:329::-;85112:4;39503:10;-1:-1:-1;;;;;85174:16:0;;;;85170:62;;85192:40;85208:5;85215:7;85224;85192:15;:40::i;:::-;85243:21;85249:5;85256:7;85243:5;:21::i;:::-;-1:-1:-1;85282:7:0;;84968:329;-1:-1:-1;;;;84968:329:0:o;44611:619::-;44895:32;;;44866:26;44895:32;;;:19;:32;;;;;44866:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44946:13;:20;44970:1;44946:25;44938:91;;;;-1:-1:-1;;;44938:91:0;;42863:2:1;44938:91:0;;;42845:21:1;42902:2;42882:18;;;42875:30;42941:34;42921:18;;;42914:62;-1:-1:-1;;;42992:18:1;;;42985:51;43053:19;;44938:91:0;42661:417:1;44938:91:0;45040:47;45058:11;45071:8;:15;45040:17;:47::i;:::-;45098:124;;-1:-1:-1;;;45098:124:0;;-1:-1:-1;;;;;45098:10:0;:15;;;;45121:10;;45098:124;;45133:11;;45146:13;;45161:8;;45171:14;;45187:18;;45207:14;;45098:124;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44855:375;44611:619;;;;;;:::o;62553:366::-;62770:12;53306:1;62837:10;62849:9;-1:-1:-1;;;;;63707:23:0;;62886:14;62902:8;62802:109;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;62795:116;;62553:366;;;;;;;:::o;6614:1309::-;6773:4;6779:12;6841;6864:13;6888:24;6925:8;6915:19;;-1:-1:-1;;;;;6915:19:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6915:19:0;;6888:46;;7444:1;7414;7376:9;7370:16;7337:4;7326:9;7322:20;7287:1;7248:7;7218:4;7195:275;7183:287;;7539:16;7528:27;;7584:8;7575:7;7572:21;7569:78;;;7624:8;7613:19;;7569:78;7734:7;7721:11;7714:28;7856:7;7853:1;7846:4;7833:11;7829:22;7814:50;7893:8;;;;-1:-1:-1;6614:1309:0;-1:-1:-1;;;;;;6614:1309:0:o;51060:375::-;51336:8;51326:19;;;;;;51275:14;:27;51290:11;51275:27;;;;;;;;;;;;;;;51303:11;51275:40;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;51275:48:0;;;;;;;;;:70;;;;51361:66;;;;51375:11;;51388;;51316:6;;51409:8;;51419:7;;51361:66;:::i;:::-;;;;;;;;51060:375;;;;;:::o;62199:346::-;62281:10;;;62329:19;:8;62281:10;62329:16;:19::i;:::-;:30;;;:55;;;;;62363:8;:15;62382:2;62363:21;62329:55;62321:95;;;;-1:-1:-1;;;62321:95:0;;45479:2:1;62321:95:0;;;45461:21:1;45518:2;45498:18;;;45491:30;45557:29;45537:18;;;45530:57;45604:18;;62321:95:0;45277:351:1;62321:95:0;62434:22;:8;62453:2;62434:18;:22::i;:::-;62429:27;-1:-1:-1;62516:21:0;:8;62534:2;62516:17;:21::i;:::-;62505:32;;62199:346;;;:::o;61687:121::-;61752:4;61776:24;86038:9;-1:-1:-1;;;;;61776:24:0;;;:::i;85305:206::-;85435:4;85452:26;85458:10;85470:7;85452:5;:26::i;:::-;-1:-1:-1;85496:7:0;85305:206;-1:-1:-1;;85305:206:0:o;62927:661::-;63066:12;;;63148:20;63066:12;53306:1;63239:19;:8;63066:12;63239:16;:19::i;:::-;:39;;;63231:79;;;;-1:-1:-1;;;63231:79:0;;45479:2:1;63231:79:0;;;45461:21:1;45518:2;45498:18;;;45491:30;45557:29;45537:18;;;45530:57;45604:18;;63231:79:0;45277:351:1;63231:79:0;63328:22;:8;63347:2;63328:18;:22::i;:::-;63323:27;-1:-1:-1;63410:21:0;:8;63428:2;63410:17;:21::i;:::-;63399:32;-1:-1:-1;63449:22:0;:8;63468:2;63449:18;:22::i;:::-;63442:29;-1:-1:-1;63498:21:0;:8;63516:2;63498:17;:21::i;:::-;63482:37;;63540:40;63555:2;63577;63559:8;:15;:20;;;;:::i;:::-;63540:8;;:40;:14;:40::i;:::-;63530:50;;62927:661;;;;;;;:::o;82990:91::-;;;;:::o;45719:276::-;45801:13;45860:2;45835:14;:21;:27;;45827:73;;;;-1:-1:-1;;;45827:73:0;;45835:2:1;45827:73:0;;;45817:21:1;45874:2;45854:18;;;45847:30;45913:34;45893:18;;;45886:62;-1:-1:-1;;;45964:18:1;;;45957:31;46005:19;;45827:73:0;45633:397:1;45827:73:0;-1:-1:-1;45973:2:0;45953:23;45947:30;;45719:276::o;80221:675::-;-1:-1:-1;;;;;80305:21:0;;80297:67;;;;-1:-1:-1;;;80297:67:0;;46237:2:1;80297:67:0;;;46219:21:1;46276:2;46256:18;;;46249:30;46315:34;46295:18;;;46288:62;-1:-1:-1;;;46366:18:1;;;46359:31;46407:19;;80297:67:0;46035:397:1;80297:67:0;-1:-1:-1;;;;;80464:18:0;;80439:22;80464:18;;;:9;:18;;;;;;80501:24;;;;80493:71;;;;-1:-1:-1;;;80493:71:0;;46639:2:1;80493:71:0;;;46621:21:1;46678:2;46658:18;;;46651:30;46717:34;46697:18;;;46690:62;-1:-1:-1;;;46768:18:1;;;46761:32;46810:19;;80493:71:0;46437:398:1;80493:71:0;-1:-1:-1;;;;;80600:18:0;;;;;;:9;:18;;;;;;;;80621:23;;;80600:44;;80739:12;:22;;;;;;;80790:37;2228:25:1;;;80600:18:0;;;80790:37;;2201:18:1;80790:37:0;;;;;;;82990:91;;;:::o;46003:407::-;46126:35;;;46102:21;46126:35;;;:22;:35;;;;;;;46176:21;;;46172:138;;-1:-1:-1;42756:5:0;46172:138;46344:16;46328:12;:32;;46320:82;;;;-1:-1:-1;;;46320:82:0;;47042:2:1;46320:82:0;;;47024:21:1;47081:2;47061:18;;;47054:30;47120:34;47100:18;;;47093:62;-1:-1:-1;;;47171:18:1;;;47164:35;47216:19;;46320:82:0;46840:401:1;23403:360:0;23479:7;23524:11;:6;23533:2;23524:11;:::i;:::-;23507:6;:13;:28;;23499:62;;;;-1:-1:-1;;;23499:62:0;;47448:2:1;23499:62:0;;;47430:21:1;47487:2;47467:18;;;47460:30;-1:-1:-1;;;47506:18:1;;;47499:51;47567:18;;23499:62:0;47246:345:1;23499:62:0;-1:-1:-1;23653:30:0;23669:4;23653:30;23647:37;-1:-1:-1;;;23643:71:0;;;23403:360::o;24724:311::-;24799:6;24843:10;:6;24852:1;24843:10;:::i;:::-;24826:6;:13;:27;;24818:60;;;;-1:-1:-1;;;24818:60:0;;47798:2:1;24818:60:0;;;47780:21:1;47837:2;47817:18;;;47810:30;-1:-1:-1;;;47856:18:1;;;47849:50;47916:18;;24818:60:0;47596:344:1;24818:60:0;-1:-1:-1;24959:29:0;24975:3;24959:29;24953:36;;24724:311::o;79340:548::-;-1:-1:-1;;;;;79424:21:0;;79416:65;;;;-1:-1:-1;;;79416:65:0;;48147:2:1;79416:65:0;;;48129:21:1;48186:2;48166:18;;;48159:30;48225:33;48205:18;;;48198:61;48276:18;;79416:65:0;47945:355:1;79416:65:0;79572:6;79556:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;79727:18:0;;;;;;:9;:18;;;;;;;;:28;;;;;;79782:37;2228:25:1;;;79782:37:0;;2201:18:1;79782:37:0;;;;;;;79340:548;;:::o;26007:326::-;26083:7;26128:11;:6;26137:2;26128:11;:::i;:::-;26111:6;:13;:28;;26103:62;;;;-1:-1:-1;;;26103:62:0;;48507:2:1;26103:62:0;;;48489:21:1;48546:2;48526:18;;;48519:30;-1:-1:-1;;;48565:18:1;;;48558:51;48626:18;;26103:62:0;48305:345:1;26103:62:0;-1:-1:-1;26253:30:0;26269:4;26253:30;26247:37;;26007:326::o;14:286:1:-;72:6;125:2;113:9;104:7;100:23;96:32;93:52;;;141:1;138;131:12;93:52;167:23;;-1:-1:-1;;;;;;219:32:1;;209:43;;199:71;;266:1;263;256:12;497:289;539:3;577:5;571:12;604:6;599:3;592:19;660:6;653:4;646:5;642:16;635:4;630:3;626:14;620:47;712:1;705:4;696:6;691:3;687:16;683:27;676:38;775:4;768:2;764:7;759:2;751:6;747:15;743:29;738:3;734:39;730:50;723:57;;;497:289;;;;:::o;791:220::-;940:2;929:9;922:21;903:4;960:45;1001:2;990:9;986:18;978:6;960:45;:::i;1016:159::-;1083:20;;1143:6;1132:18;;1122:29;;1112:57;;1165:1;1162;1155:12;1112:57;1016:159;;;:::o;1180:184::-;1238:6;1291:2;1279:9;1270:7;1266:23;1262:32;1259:52;;;1307:1;1304;1297:12;1259:52;1330:28;1348:9;1330:28;:::i;1369:131::-;-1:-1:-1;;;;;1444:31:1;;1434:42;;1424:70;;1490:1;1487;1480:12;1505:315;1573:6;1581;1634:2;1622:9;1613:7;1609:23;1605:32;1602:52;;;1650:1;1647;1640:12;1602:52;1689:9;1676:23;1708:31;1733:5;1708:31;:::i;:::-;1758:5;1810:2;1795:18;;;;1782:32;;-1:-1:-1;;;1505:315:1:o;1825:252::-;1892:6;1900;1953:2;1941:9;1932:7;1928:23;1924:32;1921:52;;;1969:1;1966;1959:12;1921:52;1992:28;2010:9;1992:28;:::i;2264:347::-;2315:8;2325:6;2379:3;2372:4;2364:6;2360:17;2356:27;2346:55;;2397:1;2394;2387:12;2346:55;-1:-1:-1;2420:20:1;;-1:-1:-1;;;;;2452:30:1;;2449:50;;;2495:1;2492;2485:12;2449:50;2532:4;2524:6;2520:17;2508:29;;2584:3;2577:4;2568:6;2560;2556:19;2552:30;2549:39;2546:59;;;2601:1;2598;2591:12;2546:59;2264:347;;;;;:::o;2616:171::-;2683:20;;-1:-1:-1;;;;;2732:30:1;;2722:41;;2712:69;;2777:1;2774;2767:12;2792:862;2898:6;2906;2914;2922;2930;2938;2991:3;2979:9;2970:7;2966:23;2962:33;2959:53;;;3008:1;3005;2998:12;2959:53;3031:28;3049:9;3031:28;:::i;:::-;3021:38;;3110:2;3099:9;3095:18;3082:32;-1:-1:-1;;;;;3174:2:1;3166:6;3163:14;3160:34;;;3190:1;3187;3180:12;3160:34;3229:58;3279:7;3270:6;3259:9;3255:22;3229:58;:::i;:::-;3306:8;;-1:-1:-1;3203:84:1;-1:-1:-1;3203:84:1;;-1:-1:-1;3360:37:1;3393:2;3378:18;;3360:37;:::i;:::-;3350:47;;3450:2;3439:9;3435:18;3422:32;3406:48;;3479:2;3469:8;3466:16;3463:36;;;3495:1;3492;3485:12;3463:36;;3534:60;3586:7;3575:8;3564:9;3560:24;3534:60;:::i;:::-;2792:862;;;;-1:-1:-1;2792:862:1;;-1:-1:-1;2792:862:1;;3613:8;;2792:862;-1:-1:-1;;;2792:862:1:o;3659:456::-;3736:6;3744;3752;3805:2;3793:9;3784:7;3780:23;3776:32;3773:52;;;3821:1;3818;3811:12;3773:52;3860:9;3847:23;3879:31;3904:5;3879:31;:::i;:::-;3929:5;-1:-1:-1;3986:2:1;3971:18;;3958:32;3999:33;3958:32;3999:33;:::i;:::-;3659:456;;4051:7;;-1:-1:-1;;;4105:2:1;4090:18;;;;4077:32;;3659:456::o;4328:160::-;4393:20;;4449:13;;4442:21;4432:32;;4422:60;;4478:1;4475;4468:12;4493:180;4549:6;4602:2;4590:9;4581:7;4577:23;4573:32;4570:52;;;4618:1;4615;4608:12;4570:52;4641:26;4657:9;4641:26;:::i;4867:687::-;4969:6;4977;4985;4993;5001;5009;5062:3;5050:9;5041:7;5037:23;5033:33;5030:53;;;5079:1;5076;5069:12;5030:53;5102:28;5120:9;5102:28;:::i;:::-;5092:38;;5177:2;5166:9;5162:18;5149:32;5139:42;;5228:2;5217:9;5213:18;5200:32;5190:42;;5251:35;5282:2;5271:9;5267:18;5251:35;:::i;:::-;5241:45;;5337:3;5326:9;5322:19;5309:33;-1:-1:-1;;;;;5357:6:1;5354:30;5351:50;;;5397:1;5394;5387:12;5351:50;5436:58;5486:7;5477:6;5466:9;5462:22;5436:58;:::i;5812:180::-;5871:6;5924:2;5912:9;5903:7;5899:23;5895:32;5892:52;;;5940:1;5937;5930:12;5892:52;-1:-1:-1;5963:23:1;;5812:180;-1:-1:-1;5812:180:1:o;5997:481::-;6075:6;6083;6091;6144:2;6132:9;6123:7;6119:23;6115:32;6112:52;;;6160:1;6157;6150:12;6112:52;6183:28;6201:9;6183:28;:::i;:::-;6173:38;;6262:2;6251:9;6247:18;6234:32;-1:-1:-1;;;;;6281:6:1;6278:30;6275:50;;;6321:1;6318;6311:12;6275:50;6360:58;6410:7;6401:6;6390:9;6386:22;6360:58;:::i;:::-;5997:481;;6437:8;;-1:-1:-1;6334:84:1;;-1:-1:-1;;;;5997:481:1:o;6483:127::-;6544:10;6539:3;6535:20;6532:1;6525:31;6575:4;6572:1;6565:15;6599:4;6596:1;6589:15;6615:275;6686:2;6680:9;6751:2;6732:13;;-1:-1:-1;;6728:27:1;6716:40;;-1:-1:-1;;;;;6771:34:1;;6807:22;;;6768:62;6765:88;;;6833:18;;:::i;:::-;6869:2;6862:22;6615:275;;-1:-1:-1;6615:275:1:o;6895:186::-;6943:4;-1:-1:-1;;;;;6968:6:1;6965:30;6962:56;;;6998:18;;:::i;:::-;-1:-1:-1;7064:2:1;7043:15;-1:-1:-1;;7039:29:1;7070:4;7035:40;;6895:186::o;7086:815::-;7170:6;7178;7186;7239:2;7227:9;7218:7;7214:23;7210:32;7207:52;;;7255:1;7252;7245:12;7207:52;7278:28;7296:9;7278:28;:::i;:::-;7268:38;;7357:2;7346:9;7342:18;7329:32;-1:-1:-1;;;;;7376:6:1;7373:30;7370:50;;;7416:1;7413;7406:12;7370:50;7439:22;;7492:4;7484:13;;7480:27;-1:-1:-1;7470:55:1;;7521:1;7518;7511:12;7470:55;7557:2;7544:16;7582:48;7598:31;7626:2;7598:31;:::i;:::-;7582:48;:::i;:::-;7653:2;7646:5;7639:17;7693:7;7688:2;7683;7679;7675:11;7671:20;7668:33;7665:53;;;7714:1;7711;7704:12;7665:53;7769:2;7764;7760;7756:11;7751:2;7744:5;7740:14;7727:45;7813:1;7808:2;7803;7796:5;7792:14;7788:23;7781:34;7834:5;7824:15;;;;;7858:37;7891:2;7880:9;7876:18;7858:37;:::i;:::-;7848:47;;7086:815;;;;;:::o;8088:160::-;8153:5;8198:2;8189:6;8184:3;8180:16;8176:25;8173:45;;;8214:1;8211;8204:12;8173:45;-1:-1:-1;8236:6:1;8088:160;-1:-1:-1;8088:160:1:o;8253:709::-;8377:6;8385;8393;8401;8409;8462:3;8450:9;8441:7;8437:23;8433:33;8430:53;;;8479:1;8476;8469:12;8430:53;8518:9;8505:23;8537:31;8562:5;8537:31;:::i;:::-;8587:5;-1:-1:-1;8611:37:1;8644:2;8629:18;;8611:37;:::i;:::-;8601:47;;8695:2;8684:9;8680:18;8667:32;8657:42;;8746:2;8735:9;8731:18;8718:32;8708:42;;8801:3;8790:9;8786:19;8773:33;-1:-1:-1;;;;;8821:6:1;8818:30;8815:50;;;8861:1;8858;8851:12;8815:50;8884:72;8948:7;8939:6;8928:9;8924:22;8884:72;:::i;:::-;8874:82;;;8253:709;;;;;;;;:::o;8967:247::-;9026:6;9079:2;9067:9;9058:7;9054:23;9050:32;9047:52;;;9095:1;9092;9085:12;9047:52;9134:9;9121:23;9153:31;9178:5;9153:31;:::i;9442:1091::-;9594:6;9602;9610;9618;9626;9634;9642;9650;9703:3;9691:9;9682:7;9678:23;9674:33;9671:53;;;9720:1;9717;9710:12;9671:53;9759:9;9746:23;9778:31;9803:5;9778:31;:::i;:::-;9828:5;-1:-1:-1;9852:37:1;9885:2;9870:18;;9852:37;:::i;:::-;9842:47;;9936:2;9925:9;9921:18;9908:32;9898:42;;9987:2;9976:9;9972:18;9959:32;9949:42;;10042:3;10031:9;10027:19;10014:33;-1:-1:-1;;;;;10107:2:1;10099:6;10096:14;10093:34;;;10123:1;10120;10113:12;10093:34;10162:58;10212:7;10203:6;10192:9;10188:22;10162:58;:::i;:::-;10239:8;;-1:-1:-1;10136:84:1;-1:-1:-1;10136:84:1;;-1:-1:-1;10293:38:1;10326:3;10311:19;;10293:38;:::i;:::-;10283:48;;10384:3;10373:9;10369:19;10356:33;10340:49;;10414:2;10404:8;10401:16;10398:36;;;10430:1;10427;10420:12;10398:36;;10453:74;10519:7;10508:8;10497:9;10493:24;10453:74;:::i;:::-;10443:84;;;9442:1091;;;;;;;;;;;:::o;10538:256::-;10604:6;10612;10665:2;10653:9;10644:7;10640:23;10636:32;10633:52;;;10681:1;10678;10671:12;10633:52;10704:28;10722:9;10704:28;:::i;:::-;10694:38;;10751:37;10784:2;10773:9;10769:18;10751:37;:::i;:::-;10741:47;;10538:256;;;;;:::o;10799:1205::-;10941:6;10949;10957;10965;10973;10981;10989;10997;11005;11013;11066:3;11054:9;11045:7;11041:23;11037:33;11034:53;;;11083:1;11080;11073:12;11034:53;11106:28;11124:9;11106:28;:::i;:::-;11096:38;;11185:2;11174:9;11170:18;11157:32;-1:-1:-1;;;;;11249:2:1;11241:6;11238:14;11235:34;;;11265:1;11262;11255:12;11235:34;11304:58;11354:7;11345:6;11334:9;11330:22;11304:58;:::i;:::-;11381:8;;-1:-1:-1;11278:84:1;-1:-1:-1;11278:84:1;;-1:-1:-1;11435:37:1;11468:2;11453:18;;11435:37;:::i;:::-;11425:47;;11519:2;11508:9;11504:18;11491:32;11481:42;;11573:3;11562:9;11558:19;11545:33;11532:46;;11587:31;11612:5;11587:31;:::i;:::-;11637:5;;-1:-1:-1;11689:3:1;11674:19;;11661:33;;-1:-1:-1;11747:3:1;11732:19;;11719:33;;11764:16;;;11761:36;;;11793:1;11790;11783:12;11761:36;;11832:60;11884:7;11873:8;11862:9;11858:24;11832:60;:::i;:::-;11806:86;;11911:8;11901:18;;;11938:8;11928:18;;;11993:3;11982:9;11978:19;11965:33;11955:43;;10799:1205;;;;;;;;;;;;;:::o;12009:1069::-;12139:6;12147;12155;12163;12171;12179;12187;12195;12203;12256:3;12244:9;12235:7;12231:23;12227:33;12224:53;;;12273:1;12270;12263:12;12224:53;12296:28;12314:9;12296:28;:::i;:::-;12286:38;;12371:2;12360:9;12356:18;12343:32;12333:42;;12422:2;12411:9;12407:18;12394:32;12384:42;;12477:2;12466:9;12462:18;12449:32;-1:-1:-1;;;;;12541:2:1;12533:6;12530:14;12527:34;;;12557:1;12554;12547:12;12527:34;12596:58;12646:7;12637:6;12626:9;12622:22;12596:58;:::i;:::-;12673:8;;-1:-1:-1;12570:84:1;-1:-1:-1;12570:84:1;;-1:-1:-1;12727:38:1;12760:3;12745:19;;12727:38;:::i;:::-;12717:48;;12784:36;12815:3;12804:9;12800:19;12784:36;:::i;:::-;12774:46;;12873:3;12862:9;12858:19;12845:33;12829:49;;12903:2;12893:8;12890:16;12887:36;;;12919:1;12916;12909:12;12887:36;;12958:60;13010:7;12999:8;12988:9;12984:24;12958:60;:::i;:::-;12932:86;;13037:8;13027:18;;;13064:8;13054:18;;;12009:1069;;;;;;;;;;;:::o;13314:315::-;13379:6;13387;13440:2;13428:9;13419:7;13415:23;13411:32;13408:52;;;13456:1;13453;13446:12;13408:52;13495:9;13482:23;13514:31;13539:5;13514:31;:::i;:::-;13564:5;-1:-1:-1;13588:35:1;13619:2;13604:18;;13588:35;:::i;13634:622::-;13729:6;13737;13745;13753;13761;13814:3;13802:9;13793:7;13789:23;13785:33;13782:53;;;13831:1;13828;13821:12;13782:53;13854:28;13872:9;13854:28;:::i;:::-;13844:38;;13901:37;13934:2;13923:9;13919:18;13901:37;:::i;:::-;13891:47;;13985:2;13974:9;13970:18;13957:32;13947:42;;14040:2;14029:9;14025:18;14012:32;-1:-1:-1;;;;;14059:6:1;14056:30;14053:50;;;14099:1;14096;14089:12;14053:50;14138:58;14188:7;14179:6;14168:9;14164:22;14138:58;:::i;:::-;13634:622;;;;-1:-1:-1;13634:622:1;;-1:-1:-1;14215:8:1;;14112:84;13634:622;-1:-1:-1;;;13634:622:1:o;14261:388::-;14329:6;14337;14390:2;14378:9;14369:7;14365:23;14361:32;14358:52;;;14406:1;14403;14396:12;14358:52;14445:9;14432:23;14464:31;14489:5;14464:31;:::i;:::-;14514:5;-1:-1:-1;14571:2:1;14556:18;;14543:32;14584:33;14543:32;14584:33;:::i;:::-;14636:7;14626:17;;;14261:388;;;;;:::o;14654:324::-;14729:6;14737;14745;14798:2;14786:9;14777:7;14773:23;14769:32;14766:52;;;14814:1;14811;14804:12;14766:52;14837:28;14855:9;14837:28;:::i;:::-;14827:38;;14884:37;14917:2;14906:9;14902:18;14884:37;:::i;:::-;14874:47;;14968:2;14957:9;14953:18;14940:32;14930:42;;14654:324;;;;;:::o;14983:248::-;15051:6;15059;15112:2;15100:9;15091:7;15087:23;15083:32;15080:52;;;15128:1;15125;15118:12;15080:52;-1:-1:-1;;15151:23:1;;;15221:2;15206:18;;;15193:32;;-1:-1:-1;14983:248:1:o;15236:460::-;15320:6;15328;15336;15344;15397:3;15385:9;15376:7;15372:23;15368:33;15365:53;;;15414:1;15411;15404:12;15365:53;15437:28;15455:9;15437:28;:::i;:::-;15427:38;;15484:37;15517:2;15506:9;15502:18;15484:37;:::i;:::-;15474:47;;15571:2;15560:9;15556:18;15543:32;15584:31;15609:5;15584:31;:::i;:::-;15236:460;;;;-1:-1:-1;15634:5:1;;15686:2;15671:18;15658:32;;-1:-1:-1;;15236:460:1:o;15701:380::-;15780:1;15776:12;;;;15823;;;15844:61;;15898:4;15890:6;15886:17;15876:27;;15844:61;15951:2;15943:6;15940:14;15920:18;15917:38;15914:161;;15997:10;15992:3;15988:20;15985:1;15978:31;16032:4;16029:1;16022:15;16060:4;16057:1;16050:15;16696:127;16757:10;16752:3;16748:20;16745:1;16738:31;16788:4;16785:1;16778:15;16812:4;16809:1;16802:15;16828:125;16893:9;;;16914:10;;;16911:36;;;16927:18;;:::i;17305:271::-;17488:6;17480;17475:3;17462:33;17444:3;17514:16;;17539:13;;;17514:16;17305:271;-1:-1:-1;17305:271:1:o;17581:266::-;17669:6;17664:3;17657:19;17721:6;17714:5;17707:4;17702:3;17698:14;17685:43;-1:-1:-1;17773:1:1;17748:16;;;17766:4;17744:27;;;17737:38;;;;17829:2;17808:15;;;-1:-1:-1;;17804:29:1;17795:39;;;17791:50;;17581:266::o;17852:326::-;18047:6;18039;18035:19;18024:9;18017:38;18091:2;18086;18075:9;18071:18;18064:30;17998:4;18111:61;18168:2;18157:9;18153:18;18145:6;18137;18111:61;:::i;18443:521::-;18520:4;18526:6;18586:11;18573:25;18680:2;18676:7;18665:8;18649:14;18645:29;18641:43;18621:18;18617:68;18607:96;;18699:1;18696;18689:12;18607:96;18726:33;;18778:20;;;-1:-1:-1;;;;;;18810:30:1;;18807:50;;;18853:1;18850;18843:12;18807:50;18886:4;18874:17;;-1:-1:-1;18917:14:1;18913:27;;;18903:38;;18900:58;;;18954:1;18951;18944:12;19375:753;19708:6;19700;19696:19;19685:9;19678:38;19752:3;19747:2;19736:9;19732:18;19725:31;19659:4;19779:62;19836:3;19825:9;19821:19;19813:6;19805;19779:62;:::i;:::-;-1:-1:-1;;;;;19881:6:1;19877:31;19872:2;19861:9;19857:18;19850:59;19945:6;19940:2;19929:9;19925:18;19918:34;19989:6;19983:3;19972:9;19968:19;19961:35;20045:9;20037:6;20033:22;20027:3;20016:9;20012:19;20005:51;20073:49;20115:6;20107;20099;20073:49;:::i;:::-;20065:57;19375:753;-1:-1:-1;;;;;;;;;;;19375:753:1:o;20536:128::-;20603:9;;;20624:11;;;20621:37;;;20638:18;;:::i;21075:360::-;21286:6;21278;21273:3;21260:33;21356:2;21352:15;;;;-1:-1:-1;;21348:53:1;21312:16;;21337:65;;;21426:2;21418:11;;21075:360;-1:-1:-1;21075:360:1:o;21565:517::-;21666:2;21661:3;21658:11;21655:421;;;21702:5;21699:1;21692:16;21746:4;21743:1;21733:18;21816:2;21804:10;21800:19;21797:1;21793:27;21787:4;21783:38;21852:4;21840:10;21837:20;21834:47;;;-1:-1:-1;21875:4:1;21834:47;21930:2;21925:3;21921:12;21918:1;21914:20;21908:4;21904:31;21894:41;;21985:81;22003:2;21996:5;21993:13;21985:81;;;22062:1;22048:16;;22029:1;22018:13;21985:81;;22258:1341;22382:3;22376:10;-1:-1:-1;;;;;22401:6:1;22398:30;22395:56;;;22431:18;;:::i;:::-;22460:96;22549:6;22509:38;22541:4;22535:11;22509:38;:::i;:::-;22503:4;22460:96;:::i;:::-;22611:4;;22668:2;22657:14;;22685:1;22680:662;;;;23386:1;23403:6;23400:89;;;-1:-1:-1;23455:19:1;;;23449:26;23400:89;-1:-1:-1;;22215:1:1;22211:11;;;22207:24;22203:29;22193:40;22239:1;22235:11;;;22190:57;23502:81;;22650:943;;22680:662;21512:1;21505:14;;;21549:4;21536:18;;-1:-1:-1;;22716:20:1;;;22833:236;22847:7;22844:1;22841:14;22833:236;;;22936:19;;;22930:26;22915:42;;23028:27;;;;22996:1;22984:14;;;;22863:19;;22833:236;;;22837:3;23097:6;23088:7;23085:19;23082:201;;;23158:19;;;23152:26;-1:-1:-1;;23241:1:1;23237:14;;;23253:3;23233:24;23229:37;23225:42;23210:58;23195:74;;23082:201;-1:-1:-1;;;;;23329:1:1;23313:14;;;23309:22;23296:36;;-1:-1:-1;22258:1341:1:o;24767:498::-;24967:4;24996:6;25041:2;25033:6;25029:15;25018:9;25011:34;25093:2;25085:6;25081:15;25076:2;25065:9;25061:18;25054:43;;25133:6;25128:2;25117:9;25113:18;25106:34;25176:3;25171:2;25160:9;25156:18;25149:31;25197:62;25254:3;25243:9;25239:19;25231:6;25223;25197:62;:::i;:::-;25189:70;24767:498;-1:-1:-1;;;;;;;24767:498:1:o;26086:493::-;26335:6;26327;26323:19;26312:9;26305:38;26379:3;26374:2;26363:9;26359:18;26352:31;26286:4;26400:62;26457:3;26446:9;26442:19;26434:6;26426;26400:62;:::i;:::-;-1:-1:-1;;;;;26498:31:1;;;;26493:2;26478:18;;26471:59;-1:-1:-1;26561:2:1;26546:18;26539:34;26392:70;26086:493;-1:-1:-1;;;26086:493:1:o;27301:1194::-;-1:-1:-1;;;;;27418:3:1;27415:27;27412:53;;;27445:18;;:::i;:::-;27474:93;27563:3;27523:38;27555:4;27549:11;27523:38;:::i;:::-;27517:4;27474:93;:::i;:::-;27593:1;27618:2;27613:3;27610:11;27635:1;27630:607;;;;28281:1;28298:3;28295:93;;;-1:-1:-1;28354:19:1;;;28341:33;28295:93;-1:-1:-1;;22215:1:1;22211:11;;;22207:24;22203:29;22193:40;22239:1;22235:11;;;22190:57;28401:78;;27603:886;;27630:607;21512:1;21505:14;;;21549:4;21536:18;;-1:-1:-1;;27666:17:1;;;27780:229;27794:7;27791:1;27788:14;27780:229;;;27883:19;;;27870:33;27855:49;;27990:4;27975:20;;;;27943:1;27931:14;;;;27810:12;27780:229;;;27784:3;28037;28028:7;28025:16;28022:159;;;28161:1;28157:6;28151:3;28145;28142:1;28138:11;28134:21;28130:34;28126:39;28113:9;28108:3;28104:19;28091:33;28087:79;28079:6;28072:95;28022:159;;;28224:1;28218:3;28215:1;28211:11;28207:19;28201:4;28194:33;27603:886;;27301:1194;;;:::o;29368:661::-;29447:6;29500:2;29488:9;29479:7;29475:23;29471:32;29468:52;;;29516:1;29513;29506:12;29468:52;29549:9;29543:16;-1:-1:-1;;;;;29574:6:1;29571:30;29568:50;;;29614:1;29611;29604:12;29568:50;29637:22;;29690:4;29682:13;;29678:27;-1:-1:-1;29668:55:1;;29719:1;29716;29709:12;29668:55;29748:2;29742:9;29773:48;29789:31;29817:2;29789:31;:::i;29773:48::-;29844:2;29837:5;29830:17;29884:7;29879:2;29874;29870;29866:11;29862:20;29859:33;29856:53;;;29905:1;29902;29895:12;29856:53;29953:2;29948;29944;29940:11;29935:2;29928:5;29924:14;29918:38;29997:1;29976:14;;;29992:2;29972:23;29965:34;;;;29980:5;29368:661;-1:-1:-1;;;;29368:661:1:o;33373:168::-;33446:9;;;33477;;33494:15;;;33488:22;;33474:37;33464:71;;33515:18;;:::i;33546:127::-;33607:10;33602:3;33598:20;33595:1;33588:31;33638:4;33635:1;33628:15;33662:4;33659:1;33652:15;33678:120;33718:1;33744;33734:35;;33749:18;;:::i;:::-;-1:-1:-1;33783:9:1;;33678:120::o;33803:135::-;33842:3;33863:17;;;33860:43;;33883:18;;:::i;:::-;-1:-1:-1;33930:1:1;33919:13;;33803:135::o;33943:642::-;34224:6;34212:19;;34194:38;;-1:-1:-1;;;;;34268:32:1;;34263:2;34248:18;;34241:60;34288:3;34332:2;34317:18;;34310:31;;;-1:-1:-1;;34364:46:1;;34390:19;;34382:6;34364:46;:::i;:::-;34460:6;34453:14;34446:22;34441:2;34430:9;34426:18;34419:50;34518:9;34510:6;34506:22;34500:3;34489:9;34485:19;34478:51;34546:33;34572:6;34564;34546:33;:::i;:::-;34538:41;33943:642;-1:-1:-1;;;;;;;;33943:642:1:o;34590:245::-;34669:6;34677;34730:2;34718:9;34709:7;34705:23;34701:32;34698:52;;;34746:1;34743;34736:12;34698:52;-1:-1:-1;;34769:16:1;;34825:2;34810:18;;;34804:25;34769:16;;34804:25;;-1:-1:-1;34590:245:1:o;35886:557::-;36143:6;36135;36131:19;36120:9;36113:38;36187:3;36182:2;36171:9;36167:18;36160:31;36094:4;36214:46;36255:3;36244:9;36240:19;36232:6;36214:46;:::i;:::-;-1:-1:-1;;;;;36300:6:1;36296:31;36291:2;36280:9;36276:18;36269:59;36376:9;36368:6;36364:22;36359:2;36348:9;36344:18;36337:50;36404:33;36430:6;36422;36404:33;:::i;36448:127::-;36509:10;36504:3;36500:20;36497:1;36490:31;36540:4;36537:1;36530:15;36564:4;36561:1;36554:15;36580:251;36650:6;36703:2;36691:9;36682:7;36678:23;36674:32;36671:52;;;36719:1;36716;36709:12;36671:52;36751:9;36745:16;36770:31;36795:5;36770:31;:::i;36836:980::-;37098:4;37146:3;37135:9;37131:19;37177:6;37166:9;37159:25;37203:2;37241:6;37236:2;37225:9;37221:18;37214:34;37284:3;37279:2;37268:9;37264:18;37257:31;37308:6;37343;37337:13;37374:6;37366;37359:22;37412:3;37401:9;37397:19;37390:26;;37451:2;37443:6;37439:15;37425:29;;37472:1;37482:195;37496:6;37493:1;37490:13;37482:195;;;37561:13;;-1:-1:-1;;;;;37557:39:1;37545:52;;37652:15;;;;37617:12;;;;37593:1;37511:9;37482:195;;;-1:-1:-1;;;;;;;37733:32:1;;;;37728:2;37713:18;;37706:60;-1:-1:-1;;;37797:3:1;37782:19;37775:35;37694:3;36836:980;-1:-1:-1;;;36836:980:1:o;38169:211::-;38210:3;38248:5;38242:12;38292:6;38285:4;38278:5;38274:16;38269:3;38263:36;38354:1;38318:16;;38343:13;;;-1:-1:-1;38318:16:1;;38169:211;-1:-1:-1;38169:211:1:o;38385:189::-;38514:3;38539:29;38564:3;38556:6;38539:29;:::i;38579:891::-;38899:4;38928:3;38970:6;38962;38958:19;38947:9;38940:38;39014:2;39009;38998:9;38994:18;38987:30;39040:45;39081:2;39070:9;39066:18;39058:6;39040:45;:::i;:::-;-1:-1:-1;;;;;39121:31:1;;39116:2;39101:18;;39094:59;39184:2;39169:18;;39162:34;;;-1:-1:-1;;;;;39233:32:1;;39227:3;39212:19;;39205:61;39253:3;39282:19;;39275:35;;;39347:22;;;39341:3;39326:19;;39319:51;39026:59;-1:-1:-1;39387:33:1;39026:59;39405:6;39387:33;:::i;:::-;39379:41;;;39457:6;39451:3;39440:9;39436:19;39429:35;38579:891;;;;;;;;;;;:::o;39475:383::-;39676:2;39665:9;39658:21;39639:4;39696:45;39737:2;39726:9;39722:18;39714:6;39696:45;:::i;:::-;-1:-1:-1;;;;;39777:31:1;;;;39772:2;39757:18;;39750:59;-1:-1:-1;39840:2:1;39825:18;39818:34;39688:53;39475:383;-1:-1:-1;39475:383:1:o;42544:112::-;42576:1;42602;42592:35;;42607:18;;:::i;:::-;-1:-1:-1;42641:9:1;;42544:112::o;43083:840::-;43432:6;43424;43420:19;43409:9;43402:38;43476:3;43471:2;43460:9;43456:18;43449:31;43383:4;43503:46;43544:3;43533:9;43529:19;43521:6;43503:46;:::i;:::-;43597:9;43589:6;43585:22;43580:2;43569:9;43565:18;43558:50;43631:33;43657:6;43649;43631:33;:::i;:::-;-1:-1:-1;;;;;43738:15:1;;;43733:2;43718:18;;43711:43;43791:15;;43785:3;43770:19;;43763:44;43844:22;;;43691:3;43823:19;;43816:51;43617:47;-1:-1:-1;43884:33:1;43617:47;43902:6;43884:33;:::i;:::-;43876:41;43083:840;-1:-1:-1;;;;;;;;;43083:840:1:o;43928:620::-;44250:3;44245;44241:13;44232:6;44227:3;44223:16;44219:36;44214:3;44207:49;44285:6;44281:1;44276:3;44272:11;44265:27;44189:3;-1:-1:-1;;;;;44315:3:1;44311:28;44391:2;44382:6;44377:3;44373:16;44369:25;44364:2;44359:3;44355:12;44348:47;44425:6;44420:2;44415:3;44411:12;44404:28;44484:2;44475:6;44470:3;44466:16;44462:25;44457:2;44452:3;44448:12;44441:47;;44504:38;44538:2;44533:3;44529:12;44521:6;44504:38;:::i;44553:719::-;44856:6;44848;44844:19;44833:9;44826:38;44900:3;44895:2;44884:9;44880:18;44873:31;44807:4;44927:46;44968:3;44957:9;44953:19;44945:6;44927:46;:::i;:::-;-1:-1:-1;;;;;45013:6:1;45009:31;45004:2;44993:9;44989:18;44982:59;45089:9;45081:6;45077:22;45072:2;45061:9;45057:18;45050:50;45123:33;45149:6;45141;45123:33;:::i;:::-;45109:47;;45205:9;45197:6;45193:22;45187:3;45176:9;45172:19;45165:51;45233:33;45259:6;45251;45233:33;:::i
Swarm Source
ipfs://5d2202a6900f68c26eea03f1911e187f1b0128136df1580ac316fdb31055bb8e
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.