Overview
Max Total Supply
4,295,709.99760115 Cake
Holders
16,079 ( 0.031%)
Market
Price
$2.77 @ 0.000765 ETH (-3.36%)
Onchain Market Cap
$11,899,116.69
Circulating Supply Market Cap
$823,326,615.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
4.935590650415035205 CakeValue
$13.67 ( ~0.00377773197772554 Eth) [0.0001%]Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CakeOFT
Compiler Version
v0.8.12+commit.f00d7308
Contract Source Code (Solidity Standard Json-Input format)
1234567891011121314151617181920212223242526pragma solidity ^0.8.0;import "@layerzerolabs/solidity-examples/contracts/token/oft/v2/fee/OFTWithFee.sol";import "@openzeppelin/contracts/security/Pausable.sol";contract CakeOFT is OFTWithFee, Pausable {// Outbound capmapping(uint16 => uint256) public chainIdToOutboundCap;mapping(uint16 => uint256) public chainIdToSentTokenAmount;mapping(uint16 => uint256) public chainIdToLastSentTimestamp;// Inbound capmapping(uint16 => uint256) public chainIdToInboundCap;mapping(uint16 => uint256) public chainIdToReceivedTokenAmount;mapping(uint16 => uint256) public chainIdToLastReceivedTimestamp;// If an address is whitelisted, the inbound/outbound cap checks are skippedmapping(address => bool) public whitelist;error ExceedOutboundCap(uint256 cap, uint256 amount);error ExceedInboundCap(uint256 cap, uint256 amount);event SetOperator(address newOperator);event SetOutboundCap(uint16 indexed chainId, uint256 cap);event SetInboundCap(uint16 indexed chainId, uint256 cap);event SetWhitelist(address indexed addr, bool isWhitelist);
123456789101112131415161718192021222324// SPDX-License-Identifier: MITpragma solidity >=0.5.0;import "./ILayerZeroUserApplicationConfig.sol";interface ILayerZeroEndpoint is ILayerZeroUserApplicationConfig {// @notice send a LayerZero message to the specified address at a LayerZero 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 destinationfunction 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 contractfunction receivePayload(uint16 _srcChainId, bytes calldata _srcAddress, address _dstAddress, uint64 _nonce, uint _gasLimit, bytes calldata_payload) external;
123456789101112// SPDX-License-Identifier: MITpragma solidity >=0.5.0;interface ILayerZeroReceiver {// @notice LayerZero 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 sentfunction lzReceive(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload) external;}
12345678910111213141516171819202122232425// SPDX-License-Identifier: MITpragma solidity >=0.5.0;interface ILayerZeroUserApplicationConfig {// @notice set the configuration of the LayerZero 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() LayerZero messaging library version to _version// @param _version - new messaging library versionfunction setSendVersion(uint16 _version) external;// @notice set the lzReceive() LayerZero messaging library version to _version// @param _version - new messaging library versionfunction 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 chainfunction forceResumeReceive(uint16 _srcChainId, bytes calldata _srcAddress) external;}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import "@openzeppelin/contracts/access/Ownable.sol";import "../interfaces/ILayerZeroReceiver.sol";import "../interfaces/ILayerZeroUserApplicationConfig.sol";import "../interfaces/ILayerZeroEndpoint.sol";import "../util/BytesLib.sol";/** a generic LzReceiver implementation*/abstract contract LzApp is Ownable, ILayerZeroReceiver, ILayerZeroUserApplicationConfig {using BytesLib for bytes;ILayerZeroEndpoint public immutable lzEndpoint;mapping(uint16 => bytes) public trustedRemoteLookup;mapping(uint16 => mapping(uint16 => uint)) public minDstGasLookup;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);
12345678910111213141516171819202122232425// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import "./LzApp.sol";import "../util/ExcessivelySafeCall.sol";/** the default LayerZero 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 NonblockingLzApp is LzApp {using ExcessivelySafeCall for address;constructor(address _endpoint) LzApp(_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 LzReceiverfunction _blockingLzReceive(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.nonblockingLzReceive.selector, _srcChainId, _srcAddress, _nonce, _payload));
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity >=0.5.0;import "@openzeppelin/contracts/utils/introspection/IERC165.sol";/*** @dev Interface of the IOFT core standard*/interface ICommonOFT 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);
12345678910111213141516// SPDX-License-Identifier: BUSL-1.1pragma solidity >=0.5.0;interface IOFTReceiverV2 {/*** @dev Called by the OFT contract when tokens are received from source chain.* @param _srcChainId The chain id of the source chain.* @param _srcAddress The address of the OFT 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 onOFTReceived(uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes32 _from, uint _amount, bytes calldata _payload)external;}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import "../../../lzApp/NonblockingLzApp.sol";import "../../../util/ExcessivelySafeCall.sol";import "./ICommonOFT.sol";import "./IOFTReceiverV2.sol";abstract contract OFTCoreV2 is NonblockingLzApp {using BytesLib for bytes;using ExcessivelySafeCall for address;uint public constant NO_EXTRA_GAS = 0;// packet typeuint8 public constant PT_SEND = 0;uint8 public constant PT_SEND_AND_CALL = 1;uint8 public immutable sharedDecimals;bool public useCustomAdapterParams;mapping(uint16 => mapping(bytes => mapping(uint64 => AmountForCall))) public amountsForCall;struct AmountForCall {uint amount;
123456789101112131415161718192021222324// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import "../OFTCoreV2.sol";import "./IOFTWithFee.sol";import "./Fee.sol";import "@openzeppelin/contracts/utils/introspection/ERC165.sol";abstract contract BaseOFTWithFee is OFTCoreV2, Fee, ERC165, IOFTWithFee {constructor(uint8 _sharedDecimals, address _lzEndpoint) OFTCoreV2(_sharedDecimals, _lzEndpoint) {}/************************************************************************* public functions************************************************************************/function sendFrom(address _from, uint16 _dstChainId, bytes32 _toAddress, uint _amount, uint _minAmount, LzCallParams calldata _callParams) publicpayable virtual override {(_amount,) = _payOFTFee(_from, _dstChainId, _amount);_amount = _send(_from, _dstChainId, _toAddress, _amount, _callParams.refundAddress, _callParams.zroPaymentAddress, _callParams.adapterParams);require(_amount >= _minAmount, "BaseOFTWithFee: amount is less than minAmount");}function sendAndCall(address _from, uint16 _dstChainId, bytes32 _toAddress, uint _amount, uint _minAmount, bytes calldata _payload, uint64_dstGasForCall, LzCallParams calldata _callParams) public payable virtual override {
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import "@openzeppelin/contracts/access/Ownable.sol";abstract contract Fee is Ownable {uint public constant BP_DENOMINATOR = 10000;mapping(uint16 => FeeConfig) public chainIdToFeeBps;uint16 public defaultFeeBp;address public feeOwner; // defaults to ownerstruct FeeConfig {uint16 feeBP;bool enabled;}event SetFeeBp(uint16 dstchainId, bool enabled, uint16 feeBp);event SetDefaultFeeBp(uint16 feeBp);event SetFeeOwner(address feeOwner);constructor(){feeOwner = owner();}
12345678910111213141516171819202122232425// SPDX-License-Identifier: MITpragma solidity >=0.5.0;import "../ICommonOFT.sol";/*** @dev Interface of the IOFT core standard*/interface IOFTWithFee is ICommonOFT {/*** @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* `_minAmount` the minimum amount of tokens to receive on dstChain* `_refundAddress` the address LayerZero refunds if too much message fee is sent* `_zroPaymentAddress` set to address(0x0) if not paying in ZRO (LayerZero Token)* `_adapterParams` is a flexible bytes array to indicate messaging adapter services*/function sendFrom(address _from, uint16 _dstChainId, bytes32 _toAddress, uint _amount, uint _minAmount, LzCallParams calldata _callParams)external payable;function sendAndCall(address _from, uint16 _dstChainId, bytes32 _toAddress, uint _amount, uint _minAmount, bytes calldata _payload, uint64_dstGasForCall, LzCallParams calldata _callParams) external payable;
12345678910111213141516171819202122232425// SPDX-License-Identifier: MITpragma solidity ^0.8.0;import "@openzeppelin/contracts/token/ERC20/ERC20.sol";import "./BaseOFTWithFee.sol";contract OFTWithFee is BaseOFTWithFee, ERC20 {uint internal immutable ld2sdRate;constructor(string memory _name, string memory _symbol, uint8 _sharedDecimals, address _lzEndpoint) ERC20(_name, _symbol) BaseOFTWithFee(_sharedDecimals, _lzEndpoint) {uint8 decimals = decimals();require(_sharedDecimals <= decimals, "OFTWithFee: 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) {
1234567891011121314151617181920212223242526// SPDX-License-Identifier: Unlicense/** @title Solidity Bytes Arrays Utils* @author Gonçalo Sá <goncalo.sa@consensys.net>** @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)internalpurereturns (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)
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT OR Apache-2.0pragma solidity >=0.7.6;library ExcessivelySafeCall {uint256 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,uint256 _gas,uint16 _maxCopy,
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)pragma solidity ^0.8.0;import "../utils/Context.sol";/*** @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.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)pragma solidity ^0.8.0;import "../utils/Context.sol";/*** @dev Contract module which allows children to implement an emergency stop* mechanism that can be triggered by an authorized account.** This module is used through inheritance. It will make available the* modifiers `whenNotPaused` and `whenPaused`, which can be applied to* the functions of your contract. Note that they will not be pausable by* simply including this module, only once the modifiers are put in place.*/abstract contract Pausable is Context {/*** @dev Emitted when the pause is triggered by `account`.*/event Paused(address account);/*** @dev Emitted when the pause is lifted by `account`.*/event Unpaused(address account);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)pragma solidity ^0.8.0;import "./IERC20.sol";import "./extensions/IERC20Metadata.sol";import "../../utils/Context.sol";/*** @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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How* to implement supply mechanisms].** 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}.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)pragma solidity ^0.8.0;/*** @dev Interface of the ERC20 standard as defined in the EIP.*/interface IERC20 {/*** @dev Emitted when `value` tokens are moved from one account (`from`) to* another (`to`).** Note that `value` may be zero.*/event Transfer(address indexed from, address indexed to, uint256 value);/*** @dev Emitted when the allowance of a `spender` for an `owner` is set by* a call to {approve}. `value` is the new allowance.*/event Approval(address indexed owner, address indexed spender, uint256 value);/*** @dev Returns the amount of tokens in existence.*/
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)pragma solidity ^0.8.0;import "../IERC20.sol";/*** @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.*/
123456789101112131415161718192021222324// SPDX-License-Identifier: MIT// 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;}}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)pragma solidity ^0.8.0;import "./IERC165.sol";/*** @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) {
12345678910111213141516171819202122232425// SPDX-License-Identifier: MIT// 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);}
12345678910111213141516171819202122232425{"evmVersion": "london","libraries": {},"metadata": {"bytecodeHash": "ipfs","useLiteralContent": true},"optimizer": {"enabled": true,"runs": 200},"remappings": [],"outputSelection": {"*": {"*": ["evm.bytecode","evm.deployedBytecode","devdoc","userdoc","metadata","abi"]}}}
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_lzEndpoint","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"uint256","name":"cap","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ExceedInboundCap","type":"error"},{"inputs":[{"internalType":"uint256","name":"cap","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ExceedOutboundCap","type":"error"},{"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":"CallOFTReceivedSuccess","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"}],"name":"DropFailedMessage","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"FallbackWithdraw","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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":"feeBp","type":"uint16"}],"name":"SetDefaultFeeBp","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"dstchainId","type":"uint16"},{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"},{"indexed":false,"internalType":"uint16","name":"feeBp","type":"uint16"}],"name":"SetFeeBp","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"feeOwner","type":"address"}],"name":"SetFeeOwner","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint16","name":"chainId","type":"uint16"},{"indexed":false,"internalType":"uint256","name":"cap","type":"uint256"}],"name":"SetInboundCap","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":"newOperator","type":"address"}],"name":"SetOperator","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint16","name":"chainId","type":"uint16"},{"indexed":false,"internalType":"uint256","name":"cap","type":"uint256"}],"name":"SetOutboundCap","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":false,"internalType":"bool","name":"_useCustomAdapterParams","type":"bool"}],"name":"SetUseCustomAdapterParams","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"addr","type":"address"},{"indexed":false,"internalType":"bool","name":"isWhitelist","type":"bool"}],"name":"SetWhitelist","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"BP_DENOMINATOR","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":"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":"uint16","name":"","type":"uint16"},{"internalType":"bytes","name":"","type":"bytes"},{"internalType":"uint64","name":"","type":"uint64"}],"name":"amountsForCall","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bool","name":"credited","type":"bool"}],"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":[{"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":"callOnOFTReceived","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"chainIdToFeeBps","outputs":[{"internalType":"uint16","name":"feeBP","type":"uint16"},{"internalType":"bool","name":"enabled","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"chainIdToInboundCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"chainIdToLastReceivedTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"chainIdToLastSentTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"chainIdToOutboundCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"chainIdToReceivedTokenAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"chainIdToSentTokenAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"circulatingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","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":[],"name":"defaultFeeBp","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","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":"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":[],"name":"feeOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"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 ILayerZeroEndpoint","name":"","type":"address"}],"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":"lzReceive","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":"nonblockingLzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"precrime","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"quoteOFTFee","outputs":[{"internalType":"uint256","name":"fee","type":"uint256"}],"stateMutability":"view","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":[{"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":"uint256","name":"_minAmount","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 ICommonOFT.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"},{"internalType":"uint256","name":"_minAmount","type":"uint256"},{"components":[{"internalType":"address payable","name":"refundAddress","type":"address"},{"internalType":"address","name":"zroPaymentAddress","type":"address"},{"internalType":"bytes","name":"adapterParams","type":"bytes"}],"internalType":"struct ICommonOFT.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":"_feeBp","type":"uint16"}],"name":"setDefaultFeeBp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"bool","name":"_enabled","type":"bool"},{"internalType":"uint16","name":"_feeBp","type":"uint16"}],"name":"setFeeBp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_feeOwner","type":"address"}],"name":"setFeeOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"chainId","type":"uint16"},{"internalType":"uint256","name":"cap","type":"uint256"}],"name":"setInboundCap","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":"chainId","type":"uint16"},{"internalType":"uint256","name":"cap","type":"uint256"}],"name":"setOutboundCap","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":"uint16","name":"_srcChainId","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":[{"internalType":"bool","name":"_useCustomAdapterParams","type":"bool"}],"name":"setUseCustomAdapterParams","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bool","name":"isWhitelist","type":"bool"}],"name":"setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sharedDecimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","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":"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":[{"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":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"useCustomAdapterParams","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60e06040523480156200001157600080fd5b506040516200547e3803806200547e8339810160408190526200003491620002d8565b604051806040016040528060118152602001702830b731b0b5b2a9bbb0b8102a37b5b2b760791b8152506040518060400160405280600481526020016343616b6560e01b8152506008838383838381818080620000a06200009a620001d960201b60201c565b620001dd565b6001600160a01b0316608052505060ff1660a052620000c76000546001600160a01b031690565b600880546001600160a01b0392909216620100000262010000600160b01b0319909216919091179055505081516200010790600c90602085019062000232565b5080516200011d90600d90602084019062000232565b5050506000620001326200022d60201b60201c565b90508060ff168360ff161115620001a65760405162461bcd60e51b815260206004820152602e60248201527f4f4654576974684665653a20736861726564446563696d616c73206d7573742060448201526d6265203c3d20646563696d616c7360901b606482015260840160405180910390fd5b620001b2838262000320565b620001bf90600a62000445565b60c0525050600e805460ff19169055506200049392505050565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b601290565b828054620002409062000456565b90600052602060002090601f016020900481019282620002645760008555620002af565b82601f106200027f57805160ff1916838001178555620002af565b82800160010185558215620002af579182015b82811115620002af57825182559160200191906001019062000292565b50620002bd929150620002c1565b5090565b5b80821115620002bd5760008155600101620002c2565b600060208284031215620002eb57600080fd5b81516001600160a01b03811681146200030357600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b600060ff821660ff8416808210156200033d576200033d6200030a565b90039392505050565b600181815b80851115620003875781600019048211156200036b576200036b6200030a565b808516156200037957918102915b93841c93908002906200034b565b509250929050565b600082620003a0575060016200043f565b81620003af575060006200043f565b8160018114620003c85760028114620003d357620003f3565b60019150506200043f565b60ff841115620003e757620003e76200030a565b50506001821b6200043f565b5060208310610133831016604e8410600b841016171562000418575081810a6200043f565b62000424838362000346565b80600019048211156200043b576200043b6200030a565b0290505b92915050565b60006200030360ff8416836200038f565b600181811c908216806200046b57607f821691505b602082108114156200048d57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c051614f6e620005106000396000818161306d015281816131c0015261398501526000610876015260008181610a9e01528181610dbd015281816110d5015281816111760152818161144601528181611cb601528181612312015281816129bc01528181612de4015261335d0152614f6e6000f3fe6080604052600436106103f95760003560e01c80638cfd8f5c11610213578063c83330ce11610123578063eab45d9c116100ab578063ed629c5c1161007a578063ed629c5c14610d2d578063f2fde38b14610d47578063f5ecbdbc14610d67578063fc0c546a14610d87578063fcd5508114610d9a57600080fd5b8063eab45d9c14610cad578063eaffd49a14610ccd578063eb8d72b714610ced578063ecd8f21214610d0d57600080fd5b8063d5c6c6d6116100f2578063d5c6c6d614610bbc578063d888296814610c2a578063dd62ed3e14610c58578063df2a5b3b14610c78578063e6a20ae614610c9857600080fd5b8063c83330ce14610b06578063ca39387c14610b5c578063cbed8b9c14610b89578063d1deba1f14610ba957600080fd5b8063a40e27cb116101a6578063a9059cbb11610175578063a9059cbb14610a56578063abe685cd14610a76578063b353aaa714610a8c578063b9818be114610ac0578063baf3292d14610ae657600080fd5b8063a40e27cb146109c9578063a457c2d7146109f6578063a4c51df514610a16578063a6c3d16514610a3657600080fd5b806395d89b41116101e257806395d89b41146109375780639b19251a1461094c5780639b65e6531461097c5780639f38369a146109a957600080fd5b80638cfd8f5c146108985780638da5cb5b146108d05780639358928b14610902578063950c8a741461091757600080fd5b8063447705151161030e5780635c975abb116102a15780637533d788116102705780637533d788146107e257806379c0ad4b146108025780637bc03b8e146108225780638456cb591461084f578063857749b01461086457600080fd5b80635c975abb1461075f57806366ad5c8a1461077757806370a0823114610797578063715018a6146107cd57600080fd5b806351a2c389116102dd57806351a2c389146106a357806353d6fd59146106d05780635a359dc5146106f05780635b8c41e61461071057600080fd5b80634477051514610646578063455ba27d1461065b5780634b104eff1461066e5780634c42899a1461068e57600080fd5b806323b872dd11610391578063365260b411610360578063365260b41461059c57806339509351146105d15780633d8b38f6146105f15780633f4ba83a1461061157806342d65a8d1461062657600080fd5b806323b872dd146105275780632cdf0b9514610547578063313ce5671461055a57806335dff2bc1461057c57600080fd5b8063095ea7b3116103cd578063095ea7b3146104975780630bc66fbf146104b757806310ddb137146104f257806318160ddd1461051257600080fd5b80621d3567146103fe57806301ffc9a71461042057806306fdde031461045557806307e0db1714610477575b600080fd5b34801561040a57600080fd5b5061041e6104193660046140b3565b610dba565b005b34801561042c57600080fd5b5061044061043b366004614146565b610feb565b60405190151581526020015b60405180910390f35b34801561046157600080fd5b5061046a611022565b60405161044c91906141c8565b34801561048357600080fd5b5061041e6104923660046141db565b6110b4565b3480156104a357600080fd5b506104406104b236600461420b565b61113d565b3480156104c357600080fd5b506104e46104d23660046141db565b60146020526000908152604090205481565b60405190815260200161044c565b3480156104fe57600080fd5b5061041e61050d3660046141db565b611155565b34801561051e57600080fd5b50600b546104e4565b34801561053357600080fd5b50610440610542366004614237565b6111ad565b61041e610555366004614290565b6111d3565b34801561056657600080fd5b5060125b60405160ff909116815260200161044c565b34801561058857600080fd5b5061041e61059736600461430b565b611276565b3480156105a857600080fd5b506105bc6105b7366004614337565b6112d2565b6040805192835260208301919091520161044c565b3480156105dd57600080fd5b506104406105ec36600461420b565b611327565b3480156105fd57600080fd5b5061044061060c36600461439c565b611349565b34801561061d57600080fd5b5061041e611415565b34801561063257600080fd5b5061041e61064136600461439c565b611427565b34801561065257600080fd5b506104e4600081565b61041e6106693660046143ee565b6114ad565b34801561067a57600080fd5b5061041e6106893660046144aa565b61158e565b34801561069a57600080fd5b5061056a600081565b3480156106af57600080fd5b506104e46106be3660046141db565b60116020526000908152604090205481565b3480156106dc57600080fd5b5061041e6106eb3660046144c7565b61164b565b3480156106fc57600080fd5b5061041e61070b3660046141db565b6116ab565b34801561071c57600080fd5b506104e461072b366004614569565b6004602090815260009384526040808520845180860184018051928152908401958401959095209452929052825290205481565b34801561076b57600080fd5b50600e5460ff16610440565b34801561078357600080fd5b5061041e6107923660046140b3565b61171d565b3480156107a357600080fd5b506104e46107b23660046144aa565b6001600160a01b031660009081526009602052604090205490565b3480156107d957600080fd5b5061041e6117f1565b3480156107ee57600080fd5b5061046a6107fd3660046141db565b611803565b34801561080e57600080fd5b5061041e61081d366004614609565b61189d565b34801561082e57600080fd5b506104e461083d3660046141db565b600f6020526000908152604090205481565b34801561085b57600080fd5b5061041e611959565b34801561087057600080fd5b5061056a7f000000000000000000000000000000000000000000000000000000000000000081565b3480156108a457600080fd5b506104e46108b3366004614643565b600260209081526000928352604080842090915290825290205481565b3480156108dc57600080fd5b506000546001600160a01b03165b6040516001600160a01b03909116815260200161044c565b34801561090e57600080fd5b506104e4611969565b34801561092357600080fd5b506003546108ea906001600160a01b031681565b34801561094357600080fd5b5061046a611979565b34801561095857600080fd5b506104406109673660046144aa565b60156020526000908152604090205460ff1681565b34801561098857600080fd5b506104e46109973660046141db565b60126020526000908152604090205481565b3480156109b557600080fd5b5061046a6109c43660046141db565b611988565b3480156109d557600080fd5b506104e46109e43660046141db565b60106020526000908152604090205481565b348015610a0257600080fd5b50610440610a1136600461420b565b611a98565b348015610a2257600080fd5b506105bc610a3136600461466d565b611b1e565b348015610a4257600080fd5b5061041e610a5136600461439c565b611bad565b348015610a6257600080fd5b50610440610a7136600461420b565b611c33565b348015610a8257600080fd5b506104e461271081565b348015610a9857600080fd5b506108ea7f000000000000000000000000000000000000000000000000000000000000000081565b348015610acc57600080fd5b506008546108ea906201000090046001600160a01b031681565b348015610af257600080fd5b5061041e610b013660046144aa565b611c41565b348015610b1257600080fd5b50610b42610b213660046141db565b60076020526000908152604090205461ffff81169062010000900460ff1682565b6040805161ffff909316835290151560208301520161044c565b348015610b6857600080fd5b506104e4610b773660046141db565b60136020526000908152604090205481565b348015610b9557600080fd5b5061041e610ba4366004614726565b611c97565b61041e610bb73660046140b3565b611d21565b348015610bc857600080fd5b50610c15610bd7366004614569565b600660209081526000938452604080852084518086018401805192815290840195840195909520945292905282529020805460019091015460ff1682565b6040805192835290151560208301520161044c565b348015610c3657600080fd5b50600854610c459061ffff1681565b60405161ffff909116815260200161044c565b348015610c6457600080fd5b506104e4610c73366004614794565b611f37565b348015610c8457600080fd5b5061041e610c933660046147cd565b611f62565b348015610ca457600080fd5b5061056a600181565b348015610cb957600080fd5b5061041e610cc8366004614809565b612014565b348015610cd957600080fd5b5061041e610ce8366004614824565b61205d565b348015610cf957600080fd5b5061041e610d0836600461439c565b61217c565b348015610d1957600080fd5b506104e4610d2836600461430b565b6121d6565b348015610d3957600080fd5b506005546104409060ff1681565b348015610d5357600080fd5b5061041e610d623660046144aa565b612268565b348015610d7357600080fd5b5061046a610d823660046148ec565b6122e1565b348015610d9357600080fd5b50306108ea565b348015610da657600080fd5b5061041e610db536600461430b565b612394565b337f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031614610e375760405162461bcd60e51b815260206004820152601e60248201527f4c7a4170703a20696e76616c696420656e64706f696e742063616c6c6572000060448201526064015b60405180910390fd5b61ffff861660009081526001602052604081208054610e5590614939565b80601f0160208091040260200160405190810160405280929190818152602001828054610e8190614939565b8015610ece5780601f10610ea357610100808354040283529160200191610ece565b820191906000526020600020905b815481529060010190602001808311610eb157829003601f168201915b50505050509050805186869050148015610ee9575060008151115b8015610f11575080516020820120604051610f07908890889061496e565b6040518091039020145b610f6c5760405162461bcd60e51b815260206004820152602660248201527f4c7a4170703a20696e76616c696420736f757263652073656e64696e6720636f6044820152651b9d1c9858dd60d21b6064820152608401610e2e565b610fe28787878080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8a018190048102820181019092528881528a9350915088908890819084018382808284376000920191909152506123e492505050565b50505050505050565b60006001600160e01b03198216630d30953d60e31b148061101c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600c805461103190614939565b80601f016020809104026020016040519081016040528092919081815260200182805461105d90614939565b80156110aa5780601f1061107f576101008083540402835291602001916110aa565b820191906000526020600020905b81548152906001019060200180831161108d57829003601f168201915b5050505050905090565b6110bc61245d565b6040516307e0db1760e01b815261ffff821660048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906307e0db17906024015b600060405180830381600087803b15801561112257600080fd5b505af1158015611136573d6000803e3d6000fd5b5050505050565b60003361114b8185856124b7565b5060019392505050565b61115d61245d565b6040516310ddb13760e01b815261ffff821660048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906310ddb13790602401611108565b6000336111bb8582856125db565b6111c6858585612655565b60019150505b9392505050565b6111de868685612823565b50925061124c868686866111f560208701876144aa565b61120560408801602089016144aa565b611212604089018961497e565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061286c92505050565b92508183101561126e5760405162461bcd60e51b8152600401610e2e906149c4565b505050505050565b61127e61245d565b61ffff82166000818152600f602052604090819020839055517f33d0fe6530e808b43711a6333a7509ab4601707b639f23fcb8aef05bb6602ae6906112c69084815260200190565b60405180910390a25050565b6000806113188888888888888080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061299092505050565b91509150965096945050505050565b60003361114b81858561133a8383611f37565b6113449190614a27565b6124b7565b61ffff83166000908152600160205260408120805482919061136a90614939565b80601f016020809104026020016040519081016040528092919081815260200182805461139690614939565b80156113e35780601f106113b8576101008083540402835291602001916113e3565b820191906000526020600020905b8154815290600101906020018083116113c657829003601f168201915b5050505050905083836040516113fa92919061496e565b60405180910390208180519060200120149150509392505050565b61141d61245d565b611425612a48565b565b61142f61245d565b6040516342d65a8d60e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906342d65a8d9061147f90869086908690600401614a68565b600060405180830381600087803b15801561149957600080fd5b505af1158015610fe2573d6000803e3d6000fd5b6114b8898988612823565b50809650506115618989898988888080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152508a925061150a91505060208901896144aa565b61151a60408a0160208b016144aa565b61152760408b018b61497e565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250612a9a92505050565b9550848610156115835760405162461bcd60e51b8152600401610e2e906149c4565b505050505050505050565b61159661245d565b6001600160a01b0381166115ec5760405162461bcd60e51b815260206004820152601a60248201527f4665653a206665654f776e65722063616e6e6f742062652030780000000000006044820152606401610e2e565b6008805462010000600160b01b031916620100006001600160a01b038416908102919091179091556040519081527f047912631afa564eebd3db2efe191a0dec62da1fede6bbbc1ffc89d87845b1b5906020015b60405180910390a150565b61165361245d565b6001600160a01b038216600081815260156020908152604091829020805460ff191685151590811790915591519182527ff6019ec0a78d156d249a1ec7579e2321f6ac7521d6e1d2eacf90ba4a184dcceb91016112c6565b6116b361245d565b6127108161ffff1611156116d95760405162461bcd60e51b8152600401610e2e90614a86565b6008805461ffff191661ffff83169081179091556040519081527fd26030ef4a8c225ee12b646eb4466acb41fb96b6cd4660b22d0ba0124e7bdc7490602001611640565b33301461177b5760405162461bcd60e51b815260206004820152602660248201527f4e6f6e626c6f636b696e674c7a4170703a2063616c6c6572206d7573742062656044820152650204c7a4170760d41b6064820152608401610e2e565b61126e8686868080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f890181900481028201810190925287815289935091508790879081908401838280828437600092019190915250612b9692505050565b6117f961245d565b6114256000612c1d565b6001602052600090815260409020805461181c90614939565b80601f016020809104026020016040519081016040528092919081815260200182805461184890614939565b80156118955780601f1061186a57610100808354040283529160200191611895565b820191906000526020600020905b81548152906001019060200180831161187857829003601f168201915b505050505081565b6118a561245d565b6127108161ffff1611156118cb5760405162461bcd60e51b8152600401610e2e90614a86565b60408051808201825261ffff83811680835285151560208085018281528985166000818152600784528890209651875492511515620100000262ffffff1990931696169590951717909455845192835292820192909252918201527fdd9c9685af3e6dcb56d8f4b88d2595d4add6837a150034e7781c46b6dcf8aaab906060015b60405180910390a1505050565b61196161245d565b611425612c6d565b6000611974600b5490565b905090565b6060600d805461103190614939565b61ffff81166000908152600160205260408120805460609291906119ab90614939565b80601f01602080910402602001604051908101604052809291908181526020018280546119d790614939565b8015611a245780601f106119f957610100808354040283529160200191611a24565b820191906000526020600020905b815481529060010190602001808311611a0757829003601f168201915b50505050509050805160001415611a7d5760405162461bcd60e51b815260206004820152601d60248201527f4c7a4170703a206e6f20747275737465642070617468207265636f72640000006044820152606401610e2e565b6111cc600060148351611a909190614acb565b839190612caa565b60003381611aa68286611f37565b905083811015611b065760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610e2e565b611b1382868684036124b7565b506001949350505050565b600080611b9b8b8b8b8b8b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8d018190048102820181019092528b81528e93508d9250908c908c9081908401838280828437600092019190915250612db792505050565b91509150995099975050505050505050565b611bb561245d565b818130604051602001611bca93929190614ae2565b60408051601f1981840301815291815261ffff85166000908152600160209081529190208251611bff93919290910190613f30565b507f8c0400cfe2d1199b1a725c78960bcc2a344d869b80590d0f2bd005db15a572ce83838360405161194c93929190614a68565b60003361114b818585612655565b611c4961245d565b600380546001600160a01b0319166001600160a01b0383169081179091556040519081527f5db758e995a17ec1ad84bdef7e8c3293a0bd6179bcce400dff5d4c3d87db726b90602001611640565b611c9f61245d565b6040516332fb62e760e21b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063cbed8b9c90611cf39088908890889088908890600401614b08565b600060405180830381600087803b158015611d0d57600080fd5b505af1158015611583573d6000803e3d6000fd5b61ffff86166000908152600460205260408082209051611d44908890889061496e565b90815260408051602092819003830190206001600160401b03871660009081529252902054905080611dc45760405162461bcd60e51b815260206004820152602360248201527f4e6f6e626c6f636b696e674c7a4170703a206e6f2073746f726564206d65737360448201526261676560e81b6064820152608401610e2e565b808383604051611dd592919061496e565b604051809103902014611e345760405162461bcd60e51b815260206004820152602160248201527f4e6f6e626c6f636b696e674c7a4170703a20696e76616c6964207061796c6f616044820152601960fa1b6064820152608401610e2e565b61ffff87166000908152600460205260408082209051611e57908990899061496e565b90815260408051602092819003830181206001600160401b038916600090815290845282902093909355601f88018290048202830182019052868252611eef918991899089908190840183828082843760009201919091525050604080516020601f8a018190048102820181019092528881528a935091508890889081908401838280828437600092019190915250612b9692505050565b7fc264d91f3adc5588250e1551f547752ca0cfa8f6b530d243b9f9f4cab10ea8e58787878785604051611f26959493929190614b41565b60405180910390a150505050505050565b6001600160a01b039182166000908152600a6020908152604080832093909416825291909152205490565b611f6a61245d565b60008111611fb25760405162461bcd60e51b81526020600482015260156024820152744c7a4170703a20696e76616c6964206d696e47617360581b6044820152606401610e2e565b61ffff83811660008181526002602090815260408083209487168084529482529182902085905581519283528201929092529081018290527f9d5c7c0b934da8fefa9c7760c98383778a12dfbfc0c3b3106518f43fb9508ac09060600161194c565b61201c61245d565b6005805460ff19168215159081179091556040519081527f1584ad594a70cbe1e6515592e1272a987d922b097ead875069cebe8b40c004a490602001611640565b3330146120ac5760405162461bcd60e51b815260206004820152601f60248201527f4f4654436f72653a2063616c6c6572206d757374206265204f4654436f7265006044820152606401610e2e565b6120b7308686612e72565b9350846001600160a01b03168a61ffff167fbf551ec93859b170f9b2141bd9298bf3f64322c6f7beb2543a0cb669834118bf866040516120f991815260200190565b60405180910390a3604051633fe79aed60e11b81526001600160a01b03861690637fcf35da90839061213d908e908e908e908e908e908d908d908d90600401614b7c565b600060405180830381600088803b15801561215757600080fd5b5087f115801561216b573d6000803e3d6000fd5b505050505050505050505050505050565b61218461245d565b61ffff831660009081526001602052604090206121a2908383613fb4565b507ffa41487ad5d6728f0b19276fa1eddc16558578f5109fc39d2dc33c3230470dab83838360405161194c93929190614a68565b61ffff828116600090815260076020908152604080832081518083019092525493841681526201000090930460ff161580159184019190915290919061223b5780516127109061222a9061ffff1685614bd7565b6122349190614c0c565b9150612261565b60085461ffff161561225c576008546127109061222a9061ffff1685614bd7565b600091505b5092915050565b61227061245d565b6001600160a01b0381166122d55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610e2e565b6122de81612c1d565b50565b604051633d7b2f6f60e21b815261ffff808616600483015284166024820152306044820152606481018290526060907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f5ecbdbc90608401600060405180830381865afa158015612361573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526123899190810190614c20565b90505b949350505050565b61239c61245d565b61ffff821660008181526012602052604090819020839055517f13aaa8bcd182e10a0da2842b57f639fd4182fa41a6c702fb2b8570da7b2911a5906112c69084815260200190565b6000806124475a60966366ad5c8a60e01b8989898960405160240161240c9493929190614c96565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915230929190612ec4565b915091508161126e5761126e8686868685612f4e565b6000546001600160a01b031633146114255760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e2e565b6001600160a01b0383166125195760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610e2e565b6001600160a01b03821661257a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610e2e565b6001600160a01b038381166000818152600a602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006125e78484611f37565b9050600019811461264f57818110156126425760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610e2e565b61264f84848484036124b7565b50505050565b6001600160a01b0383166126b95760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610e2e565b6001600160a01b03821661271b5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610e2e565b6001600160a01b038316600090815260096020526040902054818110156127935760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610e2e565b6001600160a01b038085166000908152600960205260408082208585039055918516815290812080548492906127ca908490614a27565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161281691815260200190565b60405180910390a361264f565b60008061283084846121d6565b905061283c8184614acb565b91508015612864576008546128629086906201000090046001600160a01b031683612e72565b505b935093915050565b600061287a87828481612feb565b61288385613065565b509050612892888888846130a5565b9050600081116128e05760405162461bcd60e51b815260206004820152601960248201527813d19510dbdc994e88185b5bdd5b9d081d1bdbc81cdb585b1b603a1b6044820152606401610e2e565b600061292b876128ef846131b8565b6040805160006020820152602181019390935260c09190911b6001600160c01b0319166041830152805160298184030181526049909201905290565b905061293b88828787873461323e565b86896001600160a01b03168961ffff167fd81fc9b8523134ed613870ed029d6170cbb73aa6a6bc311b9a642689fb9df59a8560405161297c91815260200190565b60405180910390a450979650505050505050565b60008060006129a2876128ef886131b8565b60405163040a7bb160e41b81529091506001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906340a7bb10906129f9908b90309086908b908b90600401614cd4565b6040805180830381865afa158015612a15573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a399190614d28565b92509250509550959350505050565b612a506133d9565b600e805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6000612ab2896001846001600160401b038916612feb565b612abb87613065565b509050612aca8a8a8a846130a5565b905060008111612b185760405162461bcd60e51b815260206004820152601960248201527813d19510dbdc994e88185b5bdd5b9d081d1bdbc81cdb585b1b603a1b6044820152606401610e2e565b6000612b2f338a612b28856131b8565b8a8a613422565b9050612b3f8a828787873461323e565b888b6001600160a01b03168b61ffff167fd81fc9b8523134ed613870ed029d6170cbb73aa6a6bc311b9a642689fb9df59a85604051612b8091815260200190565b60405180910390a4509998505050505050505050565b6000612ba28282613463565b905060ff8116612bbd57612bb8858585856134bf565b611136565b60ff811660011415612bd557612bb88585858561354f565b60405162461bcd60e51b815260206004820152601c60248201527f4f4654436f72653a20756e6b6e6f776e207061636b65742074797065000000006044820152606401610e2e565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b612c756137a2565b600e805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612a7d3390565b606081612cb881601f614a27565b1015612cf75760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b6044820152606401610e2e565b612d018284614a27565b84511015612d455760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b6044820152606401610e2e565b606082158015612d645760405191506000825260208201604052612dae565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015612d9d578051835260209283019201612d85565b5050858452601f01601f1916604052505b50949350505050565b6000806000612dca338a612b288b6131b8565b60405163040a7bb160e41b81529091506001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906340a7bb1090612e21908d90309086908b908b90600401614cd4565b6040805180830381865afa158015612e3d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e619190614d28565b925092505097509795505050505050565b600033306001600160a01b03861614801590612ea05750806001600160a01b0316856001600160a01b031614155b15612eb057612eb08582856125db565b612ebb858585612655565b50909392505050565b6000606060008060008661ffff166001600160401b03811115612ee957612ee96144fc565b6040519080825280601f01601f191660200182016040528015612f13576020820181803683370190505b50905060008087516020890160008d8df191503d925086831115612f35578692505b828152826000602083013e909890975095505050505050565b8180519060200120600460008761ffff1661ffff16815260200190815260200160002085604051612f7f9190614d4c565b9081526040805191829003602090810183206001600160401b0388166000908152915220919091557fe183f33de2837795525b4792ca4cd60535bd77c53b7e7030060bfcf5734d6b0c90612fdc9087908790879087908790614d68565b60405180910390a15050505050565b60055460ff161561300757613002848484846137e8565b61264f565b81511561264f5760405162461bcd60e51b815260206004820152602660248201527f4f4654436f72653a205f61646170746572506172616d73206d7573742062652060448201526532b6b83a3c9760d11b6064820152608401610e2e565b6000806130927f000000000000000000000000000000000000000000000000000000000000000084614dba565b905061309e8184614acb565b9150915091565b60006130af6137a2565b60006130bd868686866138c7565b6001600160a01b03871660009081526015602052604090205490915060ff16156130e857905061238c565b61ffff85166000908152601160205260408120544261310a6201518083614c0c565b6131176201518083614c0c565b111561312557839250613147565b61ffff8816600090815260106020526040902054613144908590614a27565b92505b61ffff88166000908152600f60205260409020548084111561318657604051635986919560e01b81526004810182905260248101859052604401610e2e565b5061ffff8816600090815260106020908152604080832095909555601190529290922091909155509050949350505050565b6000806131e57f000000000000000000000000000000000000000000000000000000000000000084614c0c565b90506001600160401b0381111561101c5760405162461bcd60e51b815260206004820152601a60248201527f4f4654436f72653a20616d6f756e745344206f766572666c6f770000000000006044820152606401610e2e565b61ffff86166000908152600160205260408120805461325c90614939565b80601f016020809104026020016040519081016040528092919081815260200182805461328890614939565b80156132d55780601f106132aa576101008083540402835291602001916132d5565b820191906000526020600020905b8154815290600101906020018083116132b857829003601f168201915b505050505090508051600014156133475760405162461bcd60e51b815260206004820152603060248201527f4c7a4170703a2064657374696e6174696f6e20636861696e206973206e6f742060448201526f61207472757374656420736f7572636560801b6064820152608401610e2e565b60405162c5803160e81b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063c580310090849061339e908b9086908c908c908c908c90600401614dce565b6000604051808303818588803b1580156133b757600080fd5b505af11580156133cb573d6000803e3d6000fd5b505050505050505050505050565b600e5460ff166114255760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610e2e565b6060600185856001600160a01b038916858760405160200161344996959493929190614e35565b604051602081830303815290604052905095945050505050565b6000613470826001614a27565b835110156134b65760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b6044820152606401610e2e565b50016001015190565b6000806134cb836138f9565b90925090506001600160a01b0382166134e45761dead91505b60006134ef8261397e565b90506134fc8784836139b3565b9050826001600160a01b03168761ffff167fbf551ec93859b170f9b2141bd9298bf3f64322c6f7beb2543a0cb669834118bf8360405161353e91815260200190565b60405180910390a350505050505050565b600080600080600061356086613ac4565b945094509450945094506000600660008b61ffff1661ffff168152602001908152602001600020896040516135959190614d4c565b90815260408051602092819003830181206001600160401b038c166000908152908452829020818301909252815480825260019092015460ff16151592810183905292509061366e576135e78561397e565b90506135f48b30836139b3565b604080518082018252828152600160208083019190915261ffff8f166000908152600690915282902091519293509161362e908d90614d4c565b90815260408051602092819003830190206001600160401b038d16600090815290835220825181559101516001909101805460ff19169115159190911790555b6001600160a01b0386163b6136c5576040516001600160a01b03871681527f9aedf5fdba8716db3b6705ca00150643309995d4f818a249ed6dde6677e7792d9060200160405180910390a15050505050505061264f565b60208201518b908b908b908b908b908b9087908b906000906136f0578b6001600160401b03166136f2565b5a5b90506000806137245a609663eaffd49a60e01b8e8e8e8d8d8d8d8d60405160240161240c989796959493929190614e96565b91509150811561377d578751602089012060405161ffff8d16907fb8890edbfc1c74692f527444645f95489c3703cc2df42e4a366f5d06fa6cd8849061376f908e908e908690614f0a565b60405180910390a25061378a565b61378a8b8b8b8b85612f4e565b50505050505050505050505050505050505050505050565b600e5460ff16156114255760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610e2e565b60006137f383613b7b565b61ffff808716600090815260026020908152604080832093891683529290529081205491925090613825908490614a27565b9050600081116138775760405162461bcd60e51b815260206004820152601a60248201527f4c7a4170703a206d696e4761734c696d6974206e6f74207365740000000000006044820152606401610e2e565b8082101561126e5760405162461bcd60e51b815260206004820152601b60248201527f4c7a4170703a20676173206c696d697420697320746f6f206c6f7700000000006044820152606401610e2e565b6000336001600160a01b03861681146138e5576138e58682856125db565b6138ef8684613bd7565b5090949350505050565b600080806139078482613463565b60ff16148015613918575082516029145b61395f5760405162461bcd60e51b815260206004820152601860248201527713d19510dbdc994e881a5b9d985b1a59081c185e5b1bd85960421b6044820152606401610e2e565b61396a83600d613d25565b9150613977836021613d8a565b9050915091565b600061101c7f00000000000000000000000000000000000000000000000000000000000000006001600160401b038416614bd7565b60006139bd6137a2565b60006139ca858585613de7565b6001600160a01b03851660009081526015602052604090205490915060ff16156139f55790506111cc565b61ffff851660009081526014602052604081205442613a176201518083614c0c565b613a246201518083614c0c565b1115613a3257839250613a54565b61ffff8816600090815260136020526040902054613a51908590614a27565b92505b61ffff881660009081526012602052604090205480841115613a9357604051636cc1d80760e01b81526004810182905260248101859052604401610e2e565b5061ffff88166000908152601360209081526040808320959095556014905292909220919091555090509392505050565b600080806060816001613ad78783613463565b60ff1614613b225760405162461bcd60e51b815260206004820152601860248201527713d19510dbdc994e881a5b9d985b1a59081c185e5b1bd85960421b6044820152606401610e2e565b613b2d86600d613d25565b9350613b3a866021613d8a565b9250613b47866029613df3565b9450613b54866049613d8a565b9050613b706051808851613b689190614acb565b889190612caa565b915091939590929450565b6000602282511015613bcf5760405162461bcd60e51b815260206004820152601c60248201527f4c7a4170703a20696e76616c69642061646170746572506172616d73000000006044820152606401610e2e565b506022015190565b6001600160a01b038216613c375760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610e2e565b6001600160a01b03821660009081526009602052604090205481811015613cab5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610e2e565b6001600160a01b03831660009081526009602052604081208383039055600b8054849290613cda908490614acb565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b6000613d32826014614a27565b83511015613d7a5760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b6044820152606401610e2e565b500160200151600160601b900490565b6000613d97826008614a27565b83511015613dde5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b6044820152606401610e2e565b50016008015190565b60006122618383613e51565b6000613e00826020614a27565b83511015613e485760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b6044820152606401610e2e565b50016020015190565b6001600160a01b038216613ea75760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610e2e565b80600b6000828254613eb99190614a27565b90915550506001600160a01b03821660009081526009602052604081208054839290613ee6908490614a27565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054613f3c90614939565b90600052602060002090601f016020900481019282613f5e5760008555613fa4565b82601f10613f7757805160ff1916838001178555613fa4565b82800160010185558215613fa4579182015b82811115613fa4578251825591602001919060010190613f89565b50613fb0929150614028565b5090565b828054613fc090614939565b90600052602060002090601f016020900481019282613fe25760008555613fa4565b82601f10613ffb5782800160ff19823516178555613fa4565b82800160010185558215613fa4579182015b82811115613fa457823582559160200191906001019061400d565b5b80821115613fb05760008155600101614029565b803561ffff8116811461404f57600080fd5b919050565b60008083601f84011261406657600080fd5b5081356001600160401b0381111561407d57600080fd5b60208301915083602082850101111561409557600080fd5b9250929050565b80356001600160401b038116811461404f57600080fd5b600080600080600080608087890312156140cc57600080fd5b6140d58761403d565b955060208701356001600160401b03808211156140f157600080fd5b6140fd8a838b01614054565b909750955085915061411160408a0161409c565b9450606089013591508082111561412757600080fd5b5061413489828a01614054565b979a9699509497509295939492505050565b60006020828403121561415857600080fd5b81356001600160e01b0319811681146111cc57600080fd5b60005b8381101561418b578181015183820152602001614173565b8381111561264f5750506000910152565b600081518084526141b4816020860160208601614170565b601f01601f19169290920160200192915050565b6020815260006111cc602083018461419c565b6000602082840312156141ed57600080fd5b6111cc8261403d565b6001600160a01b03811681146122de57600080fd5b6000806040838503121561421e57600080fd5b8235614229816141f6565b946020939093013593505050565b60008060006060848603121561424c57600080fd5b8335614257816141f6565b92506020840135614267816141f6565b929592945050506040919091013590565b60006060828403121561428a57600080fd5b50919050565b60008060008060008060c087890312156142a957600080fd5b86356142b4816141f6565b95506142c26020880161403d565b945060408701359350606087013592506080870135915060a08701356001600160401b038111156142f257600080fd5b6142fe89828a01614278565b9150509295509295509295565b6000806040838503121561431e57600080fd5b6142298361403d565b8035801515811461404f57600080fd5b60008060008060008060a0878903121561435057600080fd5b6143598761403d565b9550602087013594506040870135935061437560608801614327565b925060808701356001600160401b0381111561439057600080fd5b61413489828a01614054565b6000806000604084860312156143b157600080fd5b6143ba8461403d565b925060208401356001600160401b038111156143d557600080fd5b6143e186828701614054565b9497909650939450505050565b60008060008060008060008060006101008a8c03121561440d57600080fd5b8935614418816141f6565b985061442660208b0161403d565b975060408a0135965060608a0135955060808a0135945060a08a01356001600160401b038082111561445757600080fd5b6144638d838e01614054565b909650945084915061447760c08d0161409c565b935060e08c013591508082111561448d57600080fd5b5061449a8c828d01614278565b9150509295985092959850929598565b6000602082840312156144bc57600080fd5b81356111cc816141f6565b600080604083850312156144da57600080fd5b82356144e5816141f6565b91506144f360208401614327565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561453a5761453a6144fc565b604052919050565b60006001600160401b0382111561455b5761455b6144fc565b50601f01601f191660200190565b60008060006060848603121561457e57600080fd5b6145878461403d565b925060208401356001600160401b038111156145a257600080fd5b8401601f810186136145b357600080fd5b80356145c66145c182614542565b614512565b8181528760208385010111156145db57600080fd5b816020840160208301376000602083830101528094505050506146006040850161409c565b90509250925092565b60008060006060848603121561461e57600080fd5b6146278461403d565b925061463560208501614327565b91506146006040850161403d565b6000806040838503121561465657600080fd5b61465f8361403d565b91506144f36020840161403d565b600080600080600080600080600060e08a8c03121561468b57600080fd5b6146948a61403d565b985060208a0135975060408a0135965060608a01356001600160401b03808211156146be57600080fd5b6146ca8d838e01614054565b90985096508691506146de60808d0161409c565b95506146ec60a08d01614327565b945060c08c013591508082111561470257600080fd5b5061470f8c828d01614054565b915080935050809150509295985092959850929598565b60008060008060006080868803121561473e57600080fd5b6147478661403d565b94506147556020870161403d565b93506040860135925060608601356001600160401b0381111561477757600080fd5b61478388828901614054565b969995985093965092949392505050565b600080604083850312156147a757600080fd5b82356147b2816141f6565b915060208301356147c2816141f6565b809150509250929050565b6000806000606084860312156147e257600080fd5b6147eb8461403d565b92506147f96020850161403d565b9150604084013590509250925092565b60006020828403121561481b57600080fd5b6111cc82614327565b6000806000806000806000806000806101008b8d03121561484457600080fd5b61484d8b61403d565b995060208b01356001600160401b038082111561486957600080fd5b6148758e838f01614054565b909b50995089915061488960408e0161409c565b985060608d0135975060808d013591506148a2826141f6565b90955060a08c0135945060c08c013590808211156148bf57600080fd5b506148cc8d828e01614054565b9150809450508092505060e08b013590509295989b9194979a5092959850565b6000806000806080858703121561490257600080fd5b61490b8561403d565b93506149196020860161403d565b92506040850135614929816141f6565b9396929550929360600135925050565b600181811c9082168061494d57607f821691505b6020821081141561428a57634e487b7160e01b600052602260045260246000fd5b8183823760009101908152919050565b6000808335601e1984360301811261499557600080fd5b8301803591506001600160401b038211156149af57600080fd5b60200191503681900382131561409557600080fd5b6020808252602d908201527f426173654f4654576974684665653a20616d6f756e74206973206c657373207460408201526c1a185b881b5a5b905b5bdd5b9d609a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b60008219821115614a3a57614a3a614a11565b500190565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b61ffff84168152604060208201526000612389604083018486614a3f565b60208082526025908201527f4665653a20666565206270206d757374206265203c3d2042505f44454e4f4d496040820152642720aa27a960d91b606082015260800190565b600082821015614add57614add614a11565b500390565b8284823760609190911b6bffffffffffffffffffffffff19169101908152601401919050565b600061ffff808816835280871660208401525084604083015260806060830152614b36608083018486614a3f565b979650505050505050565b61ffff86168152608060208201526000614b5f608083018688614a3f565b6001600160401b0394909416604083015250606001529392505050565b61ffff8916815260c060208201526000614b9a60c08301898b614a3f565b6001600160401b038816604084015286606084015285608084015282810360a0840152614bc8818587614a3f565b9b9a5050505050505050505050565b6000816000190483118215151615614bf157614bf1614a11565b500290565b634e487b7160e01b600052601260045260246000fd5b600082614c1b57614c1b614bf6565b500490565b600060208284031215614c3257600080fd5b81516001600160401b03811115614c4857600080fd5b8201601f81018413614c5957600080fd5b8051614c676145c182614542565b818152856020838501011115614c7c57600080fd5b614c8d826020830160208601614170565b95945050505050565b61ffff85168152608060208201526000614cb3608083018661419c565b6001600160401b03851660408401528281036060840152614b36818561419c565b61ffff861681526001600160a01b038516602082015260a060408201819052600090614d029083018661419c565b84151560608401528281036080840152614d1c818561419c565b98975050505050505050565b60008060408385031215614d3b57600080fd5b505080516020909101519092909150565b60008251614d5e818460208701614170565b9190910192915050565b61ffff8616815260a060208201526000614d8560a083018761419c565b6001600160401b03861660408401528281036060840152614da6818661419c565b90508281036080840152614d1c818561419c565b600082614dc957614dc9614bf6565b500690565b61ffff8716815260c060208201526000614deb60c083018861419c565b8281036040840152614dfd818861419c565b6001600160a01b0387811660608601528616608085015283810360a08501529050614e28818561419c565b9998505050505050505050565b60ff60f81b8760f81b16815285600182015260006001600160401b0360c01b808760c01b166021840152856029840152808560c01b166049840152508251614e84816051850160208701614170565b91909101605101979650505050505050565b600061010061ffff8b168352806020840152614eb48184018b61419c565b6001600160401b038a166040850152606084018990526001600160a01b038816608085015260a0840187905283810360c08501529050614ef4818661419c565b9150508260e08301529998505050505050505050565b606081526000614f1d606083018661419c565b6001600160401b03949094166020830152506040015291905056fea2646970667358221220e07ec9b2613471010a8281582424b36ab17482f4e741c5e0456ea7a94dd21e4864736f6c634300080c003300000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675
Deployed Bytecode
0x6080604052600436106103f95760003560e01c80638cfd8f5c11610213578063c83330ce11610123578063eab45d9c116100ab578063ed629c5c1161007a578063ed629c5c14610d2d578063f2fde38b14610d47578063f5ecbdbc14610d67578063fc0c546a14610d87578063fcd5508114610d9a57600080fd5b8063eab45d9c14610cad578063eaffd49a14610ccd578063eb8d72b714610ced578063ecd8f21214610d0d57600080fd5b8063d5c6c6d6116100f2578063d5c6c6d614610bbc578063d888296814610c2a578063dd62ed3e14610c58578063df2a5b3b14610c78578063e6a20ae614610c9857600080fd5b8063c83330ce14610b06578063ca39387c14610b5c578063cbed8b9c14610b89578063d1deba1f14610ba957600080fd5b8063a40e27cb116101a6578063a9059cbb11610175578063a9059cbb14610a56578063abe685cd14610a76578063b353aaa714610a8c578063b9818be114610ac0578063baf3292d14610ae657600080fd5b8063a40e27cb146109c9578063a457c2d7146109f6578063a4c51df514610a16578063a6c3d16514610a3657600080fd5b806395d89b41116101e257806395d89b41146109375780639b19251a1461094c5780639b65e6531461097c5780639f38369a146109a957600080fd5b80638cfd8f5c146108985780638da5cb5b146108d05780639358928b14610902578063950c8a741461091757600080fd5b8063447705151161030e5780635c975abb116102a15780637533d788116102705780637533d788146107e257806379c0ad4b146108025780637bc03b8e146108225780638456cb591461084f578063857749b01461086457600080fd5b80635c975abb1461075f57806366ad5c8a1461077757806370a0823114610797578063715018a6146107cd57600080fd5b806351a2c389116102dd57806351a2c389146106a357806353d6fd59146106d05780635a359dc5146106f05780635b8c41e61461071057600080fd5b80634477051514610646578063455ba27d1461065b5780634b104eff1461066e5780634c42899a1461068e57600080fd5b806323b872dd11610391578063365260b411610360578063365260b41461059c57806339509351146105d15780633d8b38f6146105f15780633f4ba83a1461061157806342d65a8d1461062657600080fd5b806323b872dd146105275780632cdf0b9514610547578063313ce5671461055a57806335dff2bc1461057c57600080fd5b8063095ea7b3116103cd578063095ea7b3146104975780630bc66fbf146104b757806310ddb137146104f257806318160ddd1461051257600080fd5b80621d3567146103fe57806301ffc9a71461042057806306fdde031461045557806307e0db1714610477575b600080fd5b34801561040a57600080fd5b5061041e6104193660046140b3565b610dba565b005b34801561042c57600080fd5b5061044061043b366004614146565b610feb565b60405190151581526020015b60405180910390f35b34801561046157600080fd5b5061046a611022565b60405161044c91906141c8565b34801561048357600080fd5b5061041e6104923660046141db565b6110b4565b3480156104a357600080fd5b506104406104b236600461420b565b61113d565b3480156104c357600080fd5b506104e46104d23660046141db565b60146020526000908152604090205481565b60405190815260200161044c565b3480156104fe57600080fd5b5061041e61050d3660046141db565b611155565b34801561051e57600080fd5b50600b546104e4565b34801561053357600080fd5b50610440610542366004614237565b6111ad565b61041e610555366004614290565b6111d3565b34801561056657600080fd5b5060125b60405160ff909116815260200161044c565b34801561058857600080fd5b5061041e61059736600461430b565b611276565b3480156105a857600080fd5b506105bc6105b7366004614337565b6112d2565b6040805192835260208301919091520161044c565b3480156105dd57600080fd5b506104406105ec36600461420b565b611327565b3480156105fd57600080fd5b5061044061060c36600461439c565b611349565b34801561061d57600080fd5b5061041e611415565b34801561063257600080fd5b5061041e61064136600461439c565b611427565b34801561065257600080fd5b506104e4600081565b61041e6106693660046143ee565b6114ad565b34801561067a57600080fd5b5061041e6106893660046144aa565b61158e565b34801561069a57600080fd5b5061056a600081565b3480156106af57600080fd5b506104e46106be3660046141db565b60116020526000908152604090205481565b3480156106dc57600080fd5b5061041e6106eb3660046144c7565b61164b565b3480156106fc57600080fd5b5061041e61070b3660046141db565b6116ab565b34801561071c57600080fd5b506104e461072b366004614569565b6004602090815260009384526040808520845180860184018051928152908401958401959095209452929052825290205481565b34801561076b57600080fd5b50600e5460ff16610440565b34801561078357600080fd5b5061041e6107923660046140b3565b61171d565b3480156107a357600080fd5b506104e46107b23660046144aa565b6001600160a01b031660009081526009602052604090205490565b3480156107d957600080fd5b5061041e6117f1565b3480156107ee57600080fd5b5061046a6107fd3660046141db565b611803565b34801561080e57600080fd5b5061041e61081d366004614609565b61189d565b34801561082e57600080fd5b506104e461083d3660046141db565b600f6020526000908152604090205481565b34801561085b57600080fd5b5061041e611959565b34801561087057600080fd5b5061056a7f000000000000000000000000000000000000000000000000000000000000000881565b3480156108a457600080fd5b506104e46108b3366004614643565b600260209081526000928352604080842090915290825290205481565b3480156108dc57600080fd5b506000546001600160a01b03165b6040516001600160a01b03909116815260200161044c565b34801561090e57600080fd5b506104e4611969565b34801561092357600080fd5b506003546108ea906001600160a01b031681565b34801561094357600080fd5b5061046a611979565b34801561095857600080fd5b506104406109673660046144aa565b60156020526000908152604090205460ff1681565b34801561098857600080fd5b506104e46109973660046141db565b60126020526000908152604090205481565b3480156109b557600080fd5b5061046a6109c43660046141db565b611988565b3480156109d557600080fd5b506104e46109e43660046141db565b60106020526000908152604090205481565b348015610a0257600080fd5b50610440610a1136600461420b565b611a98565b348015610a2257600080fd5b506105bc610a3136600461466d565b611b1e565b348015610a4257600080fd5b5061041e610a5136600461439c565b611bad565b348015610a6257600080fd5b50610440610a7136600461420b565b611c33565b348015610a8257600080fd5b506104e461271081565b348015610a9857600080fd5b506108ea7f00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd67581565b348015610acc57600080fd5b506008546108ea906201000090046001600160a01b031681565b348015610af257600080fd5b5061041e610b013660046144aa565b611c41565b348015610b1257600080fd5b50610b42610b213660046141db565b60076020526000908152604090205461ffff81169062010000900460ff1682565b6040805161ffff909316835290151560208301520161044c565b348015610b6857600080fd5b506104e4610b773660046141db565b60136020526000908152604090205481565b348015610b9557600080fd5b5061041e610ba4366004614726565b611c97565b61041e610bb73660046140b3565b611d21565b348015610bc857600080fd5b50610c15610bd7366004614569565b600660209081526000938452604080852084518086018401805192815290840195840195909520945292905282529020805460019091015460ff1682565b6040805192835290151560208301520161044c565b348015610c3657600080fd5b50600854610c459061ffff1681565b60405161ffff909116815260200161044c565b348015610c6457600080fd5b506104e4610c73366004614794565b611f37565b348015610c8457600080fd5b5061041e610c933660046147cd565b611f62565b348015610ca457600080fd5b5061056a600181565b348015610cb957600080fd5b5061041e610cc8366004614809565b612014565b348015610cd957600080fd5b5061041e610ce8366004614824565b61205d565b348015610cf957600080fd5b5061041e610d0836600461439c565b61217c565b348015610d1957600080fd5b506104e4610d2836600461430b565b6121d6565b348015610d3957600080fd5b506005546104409060ff1681565b348015610d5357600080fd5b5061041e610d623660046144aa565b612268565b348015610d7357600080fd5b5061046a610d823660046148ec565b6122e1565b348015610d9357600080fd5b50306108ea565b348015610da657600080fd5b5061041e610db536600461430b565b612394565b337f00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd6756001600160a01b031614610e375760405162461bcd60e51b815260206004820152601e60248201527f4c7a4170703a20696e76616c696420656e64706f696e742063616c6c6572000060448201526064015b60405180910390fd5b61ffff861660009081526001602052604081208054610e5590614939565b80601f0160208091040260200160405190810160405280929190818152602001828054610e8190614939565b8015610ece5780601f10610ea357610100808354040283529160200191610ece565b820191906000526020600020905b815481529060010190602001808311610eb157829003601f168201915b50505050509050805186869050148015610ee9575060008151115b8015610f11575080516020820120604051610f07908890889061496e565b6040518091039020145b610f6c5760405162461bcd60e51b815260206004820152602660248201527f4c7a4170703a20696e76616c696420736f757263652073656e64696e6720636f6044820152651b9d1c9858dd60d21b6064820152608401610e2e565b610fe28787878080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8a018190048102820181019092528881528a9350915088908890819084018382808284376000920191909152506123e492505050565b50505050505050565b60006001600160e01b03198216630d30953d60e31b148061101c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600c805461103190614939565b80601f016020809104026020016040519081016040528092919081815260200182805461105d90614939565b80156110aa5780601f1061107f576101008083540402835291602001916110aa565b820191906000526020600020905b81548152906001019060200180831161108d57829003601f168201915b5050505050905090565b6110bc61245d565b6040516307e0db1760e01b815261ffff821660048201527f00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd6756001600160a01b0316906307e0db17906024015b600060405180830381600087803b15801561112257600080fd5b505af1158015611136573d6000803e3d6000fd5b5050505050565b60003361114b8185856124b7565b5060019392505050565b61115d61245d565b6040516310ddb13760e01b815261ffff821660048201527f00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd6756001600160a01b0316906310ddb13790602401611108565b6000336111bb8582856125db565b6111c6858585612655565b60019150505b9392505050565b6111de868685612823565b50925061124c868686866111f560208701876144aa565b61120560408801602089016144aa565b611212604089018961497e565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061286c92505050565b92508183101561126e5760405162461bcd60e51b8152600401610e2e906149c4565b505050505050565b61127e61245d565b61ffff82166000818152600f602052604090819020839055517f33d0fe6530e808b43711a6333a7509ab4601707b639f23fcb8aef05bb6602ae6906112c69084815260200190565b60405180910390a25050565b6000806113188888888888888080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061299092505050565b91509150965096945050505050565b60003361114b81858561133a8383611f37565b6113449190614a27565b6124b7565b61ffff83166000908152600160205260408120805482919061136a90614939565b80601f016020809104026020016040519081016040528092919081815260200182805461139690614939565b80156113e35780601f106113b8576101008083540402835291602001916113e3565b820191906000526020600020905b8154815290600101906020018083116113c657829003601f168201915b5050505050905083836040516113fa92919061496e565b60405180910390208180519060200120149150509392505050565b61141d61245d565b611425612a48565b565b61142f61245d565b6040516342d65a8d60e01b81526001600160a01b037f00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd67516906342d65a8d9061147f90869086908690600401614a68565b600060405180830381600087803b15801561149957600080fd5b505af1158015610fe2573d6000803e3d6000fd5b6114b8898988612823565b50809650506115618989898988888080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152508a925061150a91505060208901896144aa565b61151a60408a0160208b016144aa565b61152760408b018b61497e565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250612a9a92505050565b9550848610156115835760405162461bcd60e51b8152600401610e2e906149c4565b505050505050505050565b61159661245d565b6001600160a01b0381166115ec5760405162461bcd60e51b815260206004820152601a60248201527f4665653a206665654f776e65722063616e6e6f742062652030780000000000006044820152606401610e2e565b6008805462010000600160b01b031916620100006001600160a01b038416908102919091179091556040519081527f047912631afa564eebd3db2efe191a0dec62da1fede6bbbc1ffc89d87845b1b5906020015b60405180910390a150565b61165361245d565b6001600160a01b038216600081815260156020908152604091829020805460ff191685151590811790915591519182527ff6019ec0a78d156d249a1ec7579e2321f6ac7521d6e1d2eacf90ba4a184dcceb91016112c6565b6116b361245d565b6127108161ffff1611156116d95760405162461bcd60e51b8152600401610e2e90614a86565b6008805461ffff191661ffff83169081179091556040519081527fd26030ef4a8c225ee12b646eb4466acb41fb96b6cd4660b22d0ba0124e7bdc7490602001611640565b33301461177b5760405162461bcd60e51b815260206004820152602660248201527f4e6f6e626c6f636b696e674c7a4170703a2063616c6c6572206d7573742062656044820152650204c7a4170760d41b6064820152608401610e2e565b61126e8686868080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f890181900481028201810190925287815289935091508790879081908401838280828437600092019190915250612b9692505050565b6117f961245d565b6114256000612c1d565b6001602052600090815260409020805461181c90614939565b80601f016020809104026020016040519081016040528092919081815260200182805461184890614939565b80156118955780601f1061186a57610100808354040283529160200191611895565b820191906000526020600020905b81548152906001019060200180831161187857829003601f168201915b505050505081565b6118a561245d565b6127108161ffff1611156118cb5760405162461bcd60e51b8152600401610e2e90614a86565b60408051808201825261ffff83811680835285151560208085018281528985166000818152600784528890209651875492511515620100000262ffffff1990931696169590951717909455845192835292820192909252918201527fdd9c9685af3e6dcb56d8f4b88d2595d4add6837a150034e7781c46b6dcf8aaab906060015b60405180910390a1505050565b61196161245d565b611425612c6d565b6000611974600b5490565b905090565b6060600d805461103190614939565b61ffff81166000908152600160205260408120805460609291906119ab90614939565b80601f01602080910402602001604051908101604052809291908181526020018280546119d790614939565b8015611a245780601f106119f957610100808354040283529160200191611a24565b820191906000526020600020905b815481529060010190602001808311611a0757829003601f168201915b50505050509050805160001415611a7d5760405162461bcd60e51b815260206004820152601d60248201527f4c7a4170703a206e6f20747275737465642070617468207265636f72640000006044820152606401610e2e565b6111cc600060148351611a909190614acb565b839190612caa565b60003381611aa68286611f37565b905083811015611b065760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610e2e565b611b1382868684036124b7565b506001949350505050565b600080611b9b8b8b8b8b8b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525050604080516020601f8d018190048102820181019092528b81528e93508d9250908c908c9081908401838280828437600092019190915250612db792505050565b91509150995099975050505050505050565b611bb561245d565b818130604051602001611bca93929190614ae2565b60408051601f1981840301815291815261ffff85166000908152600160209081529190208251611bff93919290910190613f30565b507f8c0400cfe2d1199b1a725c78960bcc2a344d869b80590d0f2bd005db15a572ce83838360405161194c93929190614a68565b60003361114b818585612655565b611c4961245d565b600380546001600160a01b0319166001600160a01b0383169081179091556040519081527f5db758e995a17ec1ad84bdef7e8c3293a0bd6179bcce400dff5d4c3d87db726b90602001611640565b611c9f61245d565b6040516332fb62e760e21b81526001600160a01b037f00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675169063cbed8b9c90611cf39088908890889088908890600401614b08565b600060405180830381600087803b158015611d0d57600080fd5b505af1158015611583573d6000803e3d6000fd5b61ffff86166000908152600460205260408082209051611d44908890889061496e565b90815260408051602092819003830190206001600160401b03871660009081529252902054905080611dc45760405162461bcd60e51b815260206004820152602360248201527f4e6f6e626c6f636b696e674c7a4170703a206e6f2073746f726564206d65737360448201526261676560e81b6064820152608401610e2e565b808383604051611dd592919061496e565b604051809103902014611e345760405162461bcd60e51b815260206004820152602160248201527f4e6f6e626c6f636b696e674c7a4170703a20696e76616c6964207061796c6f616044820152601960fa1b6064820152608401610e2e565b61ffff87166000908152600460205260408082209051611e57908990899061496e565b90815260408051602092819003830181206001600160401b038916600090815290845282902093909355601f88018290048202830182019052868252611eef918991899089908190840183828082843760009201919091525050604080516020601f8a018190048102820181019092528881528a935091508890889081908401838280828437600092019190915250612b9692505050565b7fc264d91f3adc5588250e1551f547752ca0cfa8f6b530d243b9f9f4cab10ea8e58787878785604051611f26959493929190614b41565b60405180910390a150505050505050565b6001600160a01b039182166000908152600a6020908152604080832093909416825291909152205490565b611f6a61245d565b60008111611fb25760405162461bcd60e51b81526020600482015260156024820152744c7a4170703a20696e76616c6964206d696e47617360581b6044820152606401610e2e565b61ffff83811660008181526002602090815260408083209487168084529482529182902085905581519283528201929092529081018290527f9d5c7c0b934da8fefa9c7760c98383778a12dfbfc0c3b3106518f43fb9508ac09060600161194c565b61201c61245d565b6005805460ff19168215159081179091556040519081527f1584ad594a70cbe1e6515592e1272a987d922b097ead875069cebe8b40c004a490602001611640565b3330146120ac5760405162461bcd60e51b815260206004820152601f60248201527f4f4654436f72653a2063616c6c6572206d757374206265204f4654436f7265006044820152606401610e2e565b6120b7308686612e72565b9350846001600160a01b03168a61ffff167fbf551ec93859b170f9b2141bd9298bf3f64322c6f7beb2543a0cb669834118bf866040516120f991815260200190565b60405180910390a3604051633fe79aed60e11b81526001600160a01b03861690637fcf35da90839061213d908e908e908e908e908e908d908d908d90600401614b7c565b600060405180830381600088803b15801561215757600080fd5b5087f115801561216b573d6000803e3d6000fd5b505050505050505050505050505050565b61218461245d565b61ffff831660009081526001602052604090206121a2908383613fb4565b507ffa41487ad5d6728f0b19276fa1eddc16558578f5109fc39d2dc33c3230470dab83838360405161194c93929190614a68565b61ffff828116600090815260076020908152604080832081518083019092525493841681526201000090930460ff161580159184019190915290919061223b5780516127109061222a9061ffff1685614bd7565b6122349190614c0c565b9150612261565b60085461ffff161561225c576008546127109061222a9061ffff1685614bd7565b600091505b5092915050565b61227061245d565b6001600160a01b0381166122d55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610e2e565b6122de81612c1d565b50565b604051633d7b2f6f60e21b815261ffff808616600483015284166024820152306044820152606481018290526060907f00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd6756001600160a01b03169063f5ecbdbc90608401600060405180830381865afa158015612361573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526123899190810190614c20565b90505b949350505050565b61239c61245d565b61ffff821660008181526012602052604090819020839055517f13aaa8bcd182e10a0da2842b57f639fd4182fa41a6c702fb2b8570da7b2911a5906112c69084815260200190565b6000806124475a60966366ad5c8a60e01b8989898960405160240161240c9493929190614c96565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915230929190612ec4565b915091508161126e5761126e8686868685612f4e565b6000546001600160a01b031633146114255760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610e2e565b6001600160a01b0383166125195760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610e2e565b6001600160a01b03821661257a5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610e2e565b6001600160a01b038381166000818152600a602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006125e78484611f37565b9050600019811461264f57818110156126425760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610e2e565b61264f84848484036124b7565b50505050565b6001600160a01b0383166126b95760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610e2e565b6001600160a01b03821661271b5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610e2e565b6001600160a01b038316600090815260096020526040902054818110156127935760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610e2e565b6001600160a01b038085166000908152600960205260408082208585039055918516815290812080548492906127ca908490614a27565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161281691815260200190565b60405180910390a361264f565b60008061283084846121d6565b905061283c8184614acb565b91508015612864576008546128629086906201000090046001600160a01b031683612e72565b505b935093915050565b600061287a87828481612feb565b61288385613065565b509050612892888888846130a5565b9050600081116128e05760405162461bcd60e51b815260206004820152601960248201527813d19510dbdc994e88185b5bdd5b9d081d1bdbc81cdb585b1b603a1b6044820152606401610e2e565b600061292b876128ef846131b8565b6040805160006020820152602181019390935260c09190911b6001600160c01b0319166041830152805160298184030181526049909201905290565b905061293b88828787873461323e565b86896001600160a01b03168961ffff167fd81fc9b8523134ed613870ed029d6170cbb73aa6a6bc311b9a642689fb9df59a8560405161297c91815260200190565b60405180910390a450979650505050505050565b60008060006129a2876128ef886131b8565b60405163040a7bb160e41b81529091506001600160a01b037f00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd67516906340a7bb10906129f9908b90309086908b908b90600401614cd4565b6040805180830381865afa158015612a15573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a399190614d28565b92509250509550959350505050565b612a506133d9565b600e805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6000612ab2896001846001600160401b038916612feb565b612abb87613065565b509050612aca8a8a8a846130a5565b905060008111612b185760405162461bcd60e51b815260206004820152601960248201527813d19510dbdc994e88185b5bdd5b9d081d1bdbc81cdb585b1b603a1b6044820152606401610e2e565b6000612b2f338a612b28856131b8565b8a8a613422565b9050612b3f8a828787873461323e565b888b6001600160a01b03168b61ffff167fd81fc9b8523134ed613870ed029d6170cbb73aa6a6bc311b9a642689fb9df59a85604051612b8091815260200190565b60405180910390a4509998505050505050505050565b6000612ba28282613463565b905060ff8116612bbd57612bb8858585856134bf565b611136565b60ff811660011415612bd557612bb88585858561354f565b60405162461bcd60e51b815260206004820152601c60248201527f4f4654436f72653a20756e6b6e6f776e207061636b65742074797065000000006044820152606401610e2e565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b612c756137a2565b600e805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612a7d3390565b606081612cb881601f614a27565b1015612cf75760405162461bcd60e51b815260206004820152600e60248201526d736c6963655f6f766572666c6f7760901b6044820152606401610e2e565b612d018284614a27565b84511015612d455760405162461bcd60e51b8152602060048201526011602482015270736c6963655f6f75744f66426f756e647360781b6044820152606401610e2e565b606082158015612d645760405191506000825260208201604052612dae565b6040519150601f8416801560200281840101858101878315602002848b0101015b81831015612d9d578051835260209283019201612d85565b5050858452601f01601f1916604052505b50949350505050565b6000806000612dca338a612b288b6131b8565b60405163040a7bb160e41b81529091506001600160a01b037f00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd67516906340a7bb1090612e21908d90309086908b908b90600401614cd4565b6040805180830381865afa158015612e3d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e619190614d28565b925092505097509795505050505050565b600033306001600160a01b03861614801590612ea05750806001600160a01b0316856001600160a01b031614155b15612eb057612eb08582856125db565b612ebb858585612655565b50909392505050565b6000606060008060008661ffff166001600160401b03811115612ee957612ee96144fc565b6040519080825280601f01601f191660200182016040528015612f13576020820181803683370190505b50905060008087516020890160008d8df191503d925086831115612f35578692505b828152826000602083013e909890975095505050505050565b8180519060200120600460008761ffff1661ffff16815260200190815260200160002085604051612f7f9190614d4c565b9081526040805191829003602090810183206001600160401b0388166000908152915220919091557fe183f33de2837795525b4792ca4cd60535bd77c53b7e7030060bfcf5734d6b0c90612fdc9087908790879087908790614d68565b60405180910390a15050505050565b60055460ff161561300757613002848484846137e8565b61264f565b81511561264f5760405162461bcd60e51b815260206004820152602660248201527f4f4654436f72653a205f61646170746572506172616d73206d7573742062652060448201526532b6b83a3c9760d11b6064820152608401610e2e565b6000806130927f00000000000000000000000000000000000000000000000000000002540be40084614dba565b905061309e8184614acb565b9150915091565b60006130af6137a2565b60006130bd868686866138c7565b6001600160a01b03871660009081526015602052604090205490915060ff16156130e857905061238c565b61ffff85166000908152601160205260408120544261310a6201518083614c0c565b6131176201518083614c0c565b111561312557839250613147565b61ffff8816600090815260106020526040902054613144908590614a27565b92505b61ffff88166000908152600f60205260409020548084111561318657604051635986919560e01b81526004810182905260248101859052604401610e2e565b5061ffff8816600090815260106020908152604080832095909555601190529290922091909155509050949350505050565b6000806131e57f00000000000000000000000000000000000000000000000000000002540be40084614c0c565b90506001600160401b0381111561101c5760405162461bcd60e51b815260206004820152601a60248201527f4f4654436f72653a20616d6f756e745344206f766572666c6f770000000000006044820152606401610e2e565b61ffff86166000908152600160205260408120805461325c90614939565b80601f016020809104026020016040519081016040528092919081815260200182805461328890614939565b80156132d55780601f106132aa576101008083540402835291602001916132d5565b820191906000526020600020905b8154815290600101906020018083116132b857829003601f168201915b505050505090508051600014156133475760405162461bcd60e51b815260206004820152603060248201527f4c7a4170703a2064657374696e6174696f6e20636861696e206973206e6f742060448201526f61207472757374656420736f7572636560801b6064820152608401610e2e565b60405162c5803160e81b81526001600160a01b037f00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675169063c580310090849061339e908b9086908c908c908c908c90600401614dce565b6000604051808303818588803b1580156133b757600080fd5b505af11580156133cb573d6000803e3d6000fd5b505050505050505050505050565b600e5460ff166114255760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610e2e565b6060600185856001600160a01b038916858760405160200161344996959493929190614e35565b604051602081830303815290604052905095945050505050565b6000613470826001614a27565b835110156134b65760405162461bcd60e51b8152602060048201526013602482015272746f55696e74385f6f75744f66426f756e647360681b6044820152606401610e2e565b50016001015190565b6000806134cb836138f9565b90925090506001600160a01b0382166134e45761dead91505b60006134ef8261397e565b90506134fc8784836139b3565b9050826001600160a01b03168761ffff167fbf551ec93859b170f9b2141bd9298bf3f64322c6f7beb2543a0cb669834118bf8360405161353e91815260200190565b60405180910390a350505050505050565b600080600080600061356086613ac4565b945094509450945094506000600660008b61ffff1661ffff168152602001908152602001600020896040516135959190614d4c565b90815260408051602092819003830181206001600160401b038c166000908152908452829020818301909252815480825260019092015460ff16151592810183905292509061366e576135e78561397e565b90506135f48b30836139b3565b604080518082018252828152600160208083019190915261ffff8f166000908152600690915282902091519293509161362e908d90614d4c565b90815260408051602092819003830190206001600160401b038d16600090815290835220825181559101516001909101805460ff19169115159190911790555b6001600160a01b0386163b6136c5576040516001600160a01b03871681527f9aedf5fdba8716db3b6705ca00150643309995d4f818a249ed6dde6677e7792d9060200160405180910390a15050505050505061264f565b60208201518b908b908b908b908b908b9087908b906000906136f0578b6001600160401b03166136f2565b5a5b90506000806137245a609663eaffd49a60e01b8e8e8e8d8d8d8d8d60405160240161240c989796959493929190614e96565b91509150811561377d578751602089012060405161ffff8d16907fb8890edbfc1c74692f527444645f95489c3703cc2df42e4a366f5d06fa6cd8849061376f908e908e908690614f0a565b60405180910390a25061378a565b61378a8b8b8b8b85612f4e565b50505050505050505050505050505050505050505050565b600e5460ff16156114255760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610e2e565b60006137f383613b7b565b61ffff808716600090815260026020908152604080832093891683529290529081205491925090613825908490614a27565b9050600081116138775760405162461bcd60e51b815260206004820152601a60248201527f4c7a4170703a206d696e4761734c696d6974206e6f74207365740000000000006044820152606401610e2e565b8082101561126e5760405162461bcd60e51b815260206004820152601b60248201527f4c7a4170703a20676173206c696d697420697320746f6f206c6f7700000000006044820152606401610e2e565b6000336001600160a01b03861681146138e5576138e58682856125db565b6138ef8684613bd7565b5090949350505050565b600080806139078482613463565b60ff16148015613918575082516029145b61395f5760405162461bcd60e51b815260206004820152601860248201527713d19510dbdc994e881a5b9d985b1a59081c185e5b1bd85960421b6044820152606401610e2e565b61396a83600d613d25565b9150613977836021613d8a565b9050915091565b600061101c7f00000000000000000000000000000000000000000000000000000002540be4006001600160401b038416614bd7565b60006139bd6137a2565b60006139ca858585613de7565b6001600160a01b03851660009081526015602052604090205490915060ff16156139f55790506111cc565b61ffff851660009081526014602052604081205442613a176201518083614c0c565b613a246201518083614c0c565b1115613a3257839250613a54565b61ffff8816600090815260136020526040902054613a51908590614a27565b92505b61ffff881660009081526012602052604090205480841115613a9357604051636cc1d80760e01b81526004810182905260248101859052604401610e2e565b5061ffff88166000908152601360209081526040808320959095556014905292909220919091555090509392505050565b600080806060816001613ad78783613463565b60ff1614613b225760405162461bcd60e51b815260206004820152601860248201527713d19510dbdc994e881a5b9d985b1a59081c185e5b1bd85960421b6044820152606401610e2e565b613b2d86600d613d25565b9350613b3a866021613d8a565b9250613b47866029613df3565b9450613b54866049613d8a565b9050613b706051808851613b689190614acb565b889190612caa565b915091939590929450565b6000602282511015613bcf5760405162461bcd60e51b815260206004820152601c60248201527f4c7a4170703a20696e76616c69642061646170746572506172616d73000000006044820152606401610e2e565b506022015190565b6001600160a01b038216613c375760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610e2e565b6001600160a01b03821660009081526009602052604090205481811015613cab5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610e2e565b6001600160a01b03831660009081526009602052604081208383039055600b8054849290613cda908490614acb565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b6000613d32826014614a27565b83511015613d7a5760405162461bcd60e51b8152602060048201526015602482015274746f416464726573735f6f75744f66426f756e647360581b6044820152606401610e2e565b500160200151600160601b900490565b6000613d97826008614a27565b83511015613dde5760405162461bcd60e51b8152602060048201526014602482015273746f55696e7436345f6f75744f66426f756e647360601b6044820152606401610e2e565b50016008015190565b60006122618383613e51565b6000613e00826020614a27565b83511015613e485760405162461bcd60e51b8152602060048201526015602482015274746f427974657333325f6f75744f66426f756e647360581b6044820152606401610e2e565b50016020015190565b6001600160a01b038216613ea75760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610e2e565b80600b6000828254613eb99190614a27565b90915550506001600160a01b03821660009081526009602052604081208054839290613ee6908490614a27565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054613f3c90614939565b90600052602060002090601f016020900481019282613f5e5760008555613fa4565b82601f10613f7757805160ff1916838001178555613fa4565b82800160010185558215613fa4579182015b82811115613fa4578251825591602001919060010190613f89565b50613fb0929150614028565b5090565b828054613fc090614939565b90600052602060002090601f016020900481019282613fe25760008555613fa4565b82601f10613ffb5782800160ff19823516178555613fa4565b82800160010185558215613fa4579182015b82811115613fa457823582559160200191906001019061400d565b5b80821115613fb05760008155600101614029565b803561ffff8116811461404f57600080fd5b919050565b60008083601f84011261406657600080fd5b5081356001600160401b0381111561407d57600080fd5b60208301915083602082850101111561409557600080fd5b9250929050565b80356001600160401b038116811461404f57600080fd5b600080600080600080608087890312156140cc57600080fd5b6140d58761403d565b955060208701356001600160401b03808211156140f157600080fd5b6140fd8a838b01614054565b909750955085915061411160408a0161409c565b9450606089013591508082111561412757600080fd5b5061413489828a01614054565b979a9699509497509295939492505050565b60006020828403121561415857600080fd5b81356001600160e01b0319811681146111cc57600080fd5b60005b8381101561418b578181015183820152602001614173565b8381111561264f5750506000910152565b600081518084526141b4816020860160208601614170565b601f01601f19169290920160200192915050565b6020815260006111cc602083018461419c565b6000602082840312156141ed57600080fd5b6111cc8261403d565b6001600160a01b03811681146122de57600080fd5b6000806040838503121561421e57600080fd5b8235614229816141f6565b946020939093013593505050565b60008060006060848603121561424c57600080fd5b8335614257816141f6565b92506020840135614267816141f6565b929592945050506040919091013590565b60006060828403121561428a57600080fd5b50919050565b60008060008060008060c087890312156142a957600080fd5b86356142b4816141f6565b95506142c26020880161403d565b945060408701359350606087013592506080870135915060a08701356001600160401b038111156142f257600080fd5b6142fe89828a01614278565b9150509295509295509295565b6000806040838503121561431e57600080fd5b6142298361403d565b8035801515811461404f57600080fd5b60008060008060008060a0878903121561435057600080fd5b6143598761403d565b9550602087013594506040870135935061437560608801614327565b925060808701356001600160401b0381111561439057600080fd5b61413489828a01614054565b6000806000604084860312156143b157600080fd5b6143ba8461403d565b925060208401356001600160401b038111156143d557600080fd5b6143e186828701614054565b9497909650939450505050565b60008060008060008060008060006101008a8c03121561440d57600080fd5b8935614418816141f6565b985061442660208b0161403d565b975060408a0135965060608a0135955060808a0135945060a08a01356001600160401b038082111561445757600080fd5b6144638d838e01614054565b909650945084915061447760c08d0161409c565b935060e08c013591508082111561448d57600080fd5b5061449a8c828d01614278565b9150509295985092959850929598565b6000602082840312156144bc57600080fd5b81356111cc816141f6565b600080604083850312156144da57600080fd5b82356144e5816141f6565b91506144f360208401614327565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561453a5761453a6144fc565b604052919050565b60006001600160401b0382111561455b5761455b6144fc565b50601f01601f191660200190565b60008060006060848603121561457e57600080fd5b6145878461403d565b925060208401356001600160401b038111156145a257600080fd5b8401601f810186136145b357600080fd5b80356145c66145c182614542565b614512565b8181528760208385010111156145db57600080fd5b816020840160208301376000602083830101528094505050506146006040850161409c565b90509250925092565b60008060006060848603121561461e57600080fd5b6146278461403d565b925061463560208501614327565b91506146006040850161403d565b6000806040838503121561465657600080fd5b61465f8361403d565b91506144f36020840161403d565b600080600080600080600080600060e08a8c03121561468b57600080fd5b6146948a61403d565b985060208a0135975060408a0135965060608a01356001600160401b03808211156146be57600080fd5b6146ca8d838e01614054565b90985096508691506146de60808d0161409c565b95506146ec60a08d01614327565b945060c08c013591508082111561470257600080fd5b5061470f8c828d01614054565b915080935050809150509295985092959850929598565b60008060008060006080868803121561473e57600080fd5b6147478661403d565b94506147556020870161403d565b93506040860135925060608601356001600160401b0381111561477757600080fd5b61478388828901614054565b969995985093965092949392505050565b600080604083850312156147a757600080fd5b82356147b2816141f6565b915060208301356147c2816141f6565b809150509250929050565b6000806000606084860312156147e257600080fd5b6147eb8461403d565b92506147f96020850161403d565b9150604084013590509250925092565b60006020828403121561481b57600080fd5b6111cc82614327565b6000806000806000806000806000806101008b8d03121561484457600080fd5b61484d8b61403d565b995060208b01356001600160401b038082111561486957600080fd5b6148758e838f01614054565b909b50995089915061488960408e0161409c565b985060608d0135975060808d013591506148a2826141f6565b90955060a08c0135945060c08c013590808211156148bf57600080fd5b506148cc8d828e01614054565b9150809450508092505060e08b013590509295989b9194979a5092959850565b6000806000806080858703121561490257600080fd5b61490b8561403d565b93506149196020860161403d565b92506040850135614929816141f6565b9396929550929360600135925050565b600181811c9082168061494d57607f821691505b6020821081141561428a57634e487b7160e01b600052602260045260246000fd5b8183823760009101908152919050565b6000808335601e1984360301811261499557600080fd5b8301803591506001600160401b038211156149af57600080fd5b60200191503681900382131561409557600080fd5b6020808252602d908201527f426173654f4654576974684665653a20616d6f756e74206973206c657373207460408201526c1a185b881b5a5b905b5bdd5b9d609a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b60008219821115614a3a57614a3a614a11565b500190565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b61ffff84168152604060208201526000612389604083018486614a3f565b60208082526025908201527f4665653a20666565206270206d757374206265203c3d2042505f44454e4f4d496040820152642720aa27a960d91b606082015260800190565b600082821015614add57614add614a11565b500390565b8284823760609190911b6bffffffffffffffffffffffff19169101908152601401919050565b600061ffff808816835280871660208401525084604083015260806060830152614b36608083018486614a3f565b979650505050505050565b61ffff86168152608060208201526000614b5f608083018688614a3f565b6001600160401b0394909416604083015250606001529392505050565b61ffff8916815260c060208201526000614b9a60c08301898b614a3f565b6001600160401b038816604084015286606084015285608084015282810360a0840152614bc8818587614a3f565b9b9a5050505050505050505050565b6000816000190483118215151615614bf157614bf1614a11565b500290565b634e487b7160e01b600052601260045260246000fd5b600082614c1b57614c1b614bf6565b500490565b600060208284031215614c3257600080fd5b81516001600160401b03811115614c4857600080fd5b8201601f81018413614c5957600080fd5b8051614c676145c182614542565b818152856020838501011115614c7c57600080fd5b614c8d826020830160208601614170565b95945050505050565b61ffff85168152608060208201526000614cb3608083018661419c565b6001600160401b03851660408401528281036060840152614b36818561419c565b61ffff861681526001600160a01b038516602082015260a060408201819052600090614d029083018661419c565b84151560608401528281036080840152614d1c818561419c565b98975050505050505050565b60008060408385031215614d3b57600080fd5b505080516020909101519092909150565b60008251614d5e818460208701614170565b9190910192915050565b61ffff8616815260a060208201526000614d8560a083018761419c565b6001600160401b03861660408401528281036060840152614da6818661419c565b90508281036080840152614d1c818561419c565b600082614dc957614dc9614bf6565b500690565b61ffff8716815260c060208201526000614deb60c083018861419c565b8281036040840152614dfd818861419c565b6001600160a01b0387811660608601528616608085015283810360a08501529050614e28818561419c565b9998505050505050505050565b60ff60f81b8760f81b16815285600182015260006001600160401b0360c01b808760c01b166021840152856029840152808560c01b166049840152508251614e84816051850160208701614170565b91909101605101979650505050505050565b600061010061ffff8b168352806020840152614eb48184018b61419c565b6001600160401b038a166040850152606084018990526001600160a01b038816608085015260a0840187905283810360c08501529050614ef4818661419c565b9150508260e08301529998505050505050505050565b606081526000614f1d606083018661419c565b6001600160401b03949094166020830152506040015291905056fea2646970667358221220e07ec9b2613471010a8281582424b36ab17482f4e741c5e0456ea7a94dd21e4864736f6c634300080c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675
-----Decoded View---------------
Arg [0] : _lzEndpoint (address): 0x66A71Dcef29A0fFBDBE3c6a460a3B5BC225Cd675
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675
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.